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
The validation of SQL virtual tables with null column values fails in Java with the following error:
Message: Column TestTable.anotherId type check failed (UNKNOWN doesn't match to INTEGER)! Type: INVALID_COLUMN_TYPE
Used schema:
subtype int16 AnotherId; sql_table TestTable using fts4 { sql_virtual int64 docId; string text; AnotherId anotherId; sql "notindexed='anotherId'"; };
To reproduce this bug, it is enough to set column anotherId to null and to use new JDBC driver.
anotherId
The text was updated successfully, but these errors were encountered:
[#452] Fix Java validation of SQL virtual tables with null column values
f6667b4
[#452] Fix language tests broken by JDBC driver update
b5897d0
mikir
No branches or pull requests
The validation of SQL virtual tables with null column values fails in Java with the following error:
Used schema:
To reproduce this bug, it is enough to set column
anotherId
to null and to use new JDBC driver.The text was updated successfully, but these errors were encountered: