-
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
SHOW CREATE SCHEMA on Glue fails when the database contains parameters #24744
Comments
Hello, I don't think there is any issue with aws glue command. But I see you combined "SHOW" and "CREATE" in your sql command in trino. trino> SHOW CREATE SCHEMA iceberg.tempdb; Thanks & Regards |
@daliparthi It's a valid syntax in Trino. See https://trino.io/docs/current/sql/show-create-schema.html |
oops sorry about that, i see what you are talking about |
@ebyhr So the solution to add a parameter property is the way to go or do we need discussion with wider audience ? |
The solution is returning only |
#25116 has been raised to account for this |
aws glue create-database --database-input "{\"Name\":\"tempdb\", \"Parameters\":{\"string\": \"string\"}}"
The cause is the following. We should check all catalogs' implementation (HMS, REST, JDBC, Snowflake, Nessie) in addition to Glue.
trino/plugin/trino-iceberg/src/main/java/io/trino/plugin/iceberg/catalog/glue/TrinoGlueCatalog.java
Lines 311 to 313 in ea17c2e
The text was updated successfully, but these errors were encountered: