We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If for any reason you put an incorrect value in a column that isn't of the same type, dqlite will core dump.
Core dumps are currently non-recoverable, so this is extremely problematic.
The offending lines:
dqlite/src/query.c
Lines 7 to 30 in 7a37bdf
In sqlite this will return the type regardless of the value. I think dqlite should follow what sqlite does here.
Note: if we compile in release mode, it prevents us from identifying other problems/issues.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If for any reason you put an incorrect value in a column that isn't of the same type, dqlite will core dump.
Core dumps are currently non-recoverable, so this is extremely problematic.
The offending lines:
dqlite/src/query.c
Lines 7 to 30 in 7a37bdf
In sqlite this will return the type regardless of the value. I think dqlite should follow what sqlite does here.
Note: if we compile in release mode, it prevents us from identifying other problems/issues.
The text was updated successfully, but these errors were encountered: