我可以使用 trino 向冰山表添加表注释,使用这个 trino 命令:
comment on table iceberg.table_schema.table_name is 'My Comment'
也可以使用以下命令从 pyspark 中读取:
spark.sql("describe extended iceberg.table_schema.table_name")
我找不到使用 spark 将这些注释插入表的方法。有没有办法这样做?非常感谢
我可以使用 trino 向冰山表添加表注释,使用这个 trino 命令:
comment on table iceberg.table_schema.table_name is 'My Comment'
也可以使用以下命令从 pyspark 中读取:
spark.sql("describe extended iceberg.table_schema.table_name")
我找不到使用 spark 将这些注释插入表的方法。有没有办法这样做?非常感谢