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
Currently databend-jdbc returns string type, such as Int32:
Int32
ResultSet rs = conn.getMetaData().getColumns(this.db, this.schema, this.table, "%")
While in fact the type returned by regular databases (such as MySQL) is int, and the data returned depends on java.sql.Types
java.sql.Types
The text was updated successfully, but these errors were encountered:
Thanks for your report! databend-jdbc return the DatabendRawType as Data_Type now I will try to fix it.
databend-jdbc
DatabendRawType
Data_Type
Sorry, something went wrong.
hantmac
No branches or pull requests
Currently databend-jdbc returns string type, such as
Int32
:While in fact the type returned by regular databases (such as MySQL) is int, and the data returned depends on
java.sql.Types
The text was updated successfully, but these errors were encountered: