You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE findinpathtable(
eventId BIGINT COMMENT 'event identifier comment',
data STRING
)
USING DELTA
LOCATION 's3://like/my/comment' ;
On Trino
describe findinpathtable;
Due to the fact that the column eventId is saved under this name in the metadata string, its comment doesn't get shown in the DESCRIBE statement.
Same issue for the statement:
select *, comment from mycatalog.information_schema.columns
where table_catalog = 'mycatalog' and table_schema = 'myschema' and table_name = 'findinpathtable';
Other operations may be affected as well.
Check for the usages of the method io.trino.plugin.deltalake.transactionlog.DeltaLakeSchemaSupport#getColumnProperties
The text was updated successfully, but these errors were encountered:
ebyhr
changed the title
Delta Lake: Comment not shown in case that the column name contains upper case letters
Column properties are ignored when the column name contains uppercase characters
Jul 3, 2023
On Databricks/Spark
On Trino
Due to the fact that the column
eventId
is saved under this name in the metadata string, its comment doesn't get shown in theDESCRIBE
statement.Same issue for the statement:
Other operations may be affected as well.
Check for the usages of the method
io.trino.plugin.deltalake.transactionlog.DeltaLakeSchemaSupport#getColumnProperties
The text was updated successfully, but these errors were encountered: