-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server crash with a simple dataset #57
Comments
Hello, and thank you for the bug report. It looks like the problem comes from decoding decimal values. Can you reproduce it with a simple |
Can you paste the full backtrace you get by reproducing the crash with environment variable |
Ok, I found the bug in the mysql driver. I'm pushing a fix, it'll be in the next version. |
Until the next version is published, you can work around the bug by casting decimal values before passing them to SQLPage: select series, x,
CAST(value AS DOUBLE) AS value
from test2; |
Got it, your bypass work well ! |
Hello
I'm experiencing a server crash with a small dataset :
Running V0.9.4 under Windows 10
SQL of the page :
And the Test2 table is below, the value field is stored in DECIMAL in the database, other fields are stored in VARCHAR
regards,
Pascal
The text was updated successfully, but these errors were encountered: