Skip to content
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

Support table and column comments in Delta Lake #12424

Closed
2 of 3 tasks
ebyhr opened this issue May 17, 2022 · 0 comments · Fixed by #12715
Closed
2 of 3 tasks

Support table and column comments in Delta Lake #12424

ebyhr opened this issue May 17, 2022 · 0 comments · Fixed by #12715
Labels
bug Something isn't working

Comments

@ebyhr
Copy link
Member

ebyhr commented May 17, 2022

Currently, comment option is ignored when creating a new table.

trino> CREATE TABLE delta_lake.tpch.test (c1 int COMMENT 'foo') COMMENT 'bar';
CREATE TABLE
trino> SHOW CREATE TABLE delta_lake.tpch.test;
                                                    Create Table
---------------------------------------------------------------------------------------------------------------------
 CREATE TABLE delta_lake.tpch.test (
    c1 integer
 )
 WITH (
    location = '/var/folders/8s/dkvf18z55lj_9yxhy1n54sph0000gn/T/TrinoTest7021166242159021550/delta_lake/tpch/test',
    partitioned_by = ARRAY[]
 )
(1 row)

#12371 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Development

Successfully merging a pull request may close this issue.

2 participants