-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
DatabaseMetadata.getTables() is sensitive to the table name when table creation is not #22204
Comments
Can you reproduce the issue only using Trino JDBC driver without jdbcDriverOOo? |
Well by doing more investigation I realized that I hadn't seen everything. The table is well created, however its name is converted to lower case and |
It's related to #17. Let me close this issue. |
The workaround is to only create tables in lower case but do you have anything planned on your side to resolve this problem? |
I don't know how Trino works, but if Trino handles table names only in lowercase then |
Hi all,
I am trying to integrate the Trino JDBC driver into the jdbcDriverOOo extension which is a JDBC driver for LibreOffice Base.
When creating a table in Base table design two things are done:
DatabaseMetaData.getTables(new_table_catalog, new_table_schema, new_table_name, null)
is done to retrieve the new created table.It appears that just after the creation of a table it is not possible to find it with
getTables()
however after a certain delay this table is indeed found and returned bygetTables()
...The text was updated successfully, but these errors were encountered: