everything good? I'm trying to put a comment on the ICEBRG table in glue catalog , and I used it as follows:
spark.sql(f"""CREATE EXTERNAL TABLE IF NOT EXISTS {schema_name}.{table_name}({columns})
USING iceberg
COMMENT 'table description'
PARTITIONED BY ({partition_by_create})
LOCATION '{bucket_name}'""")
I also tried like this
OPTIONS('comment' = '{comment_table}')
In both ways it creates the table inserts the comments in the fields but does not insert the comment in the table
In the glue catalog it appears as follows:
Does anyone know how to insert this comment correctly? Thanks