-
Notifications
You must be signed in to change notification settings - Fork 79
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
Binding signed/unsigned integer causes different results #313
Comments
Please give a reproducible example. |
db = SQLite.DB()
DBInterface.execute(db, "CREATE TABLE t(x INTEGER)")
DBInterface.execute(db, "INSERT INTO t(x) VALUES (1000)") Then:
|
I think this is because we don't have a direct dispatch for UInt types, so they go through the fallback which does the full |
This also seems to be an issue if you load a DataFrame with |
For instance a query like so:
Binding
0x1000
(which isUInt16
) andInt(0x1000)
yield different results.The text was updated successfully, but these errors were encountered: