5 lines
174 B
Text
5 lines
174 B
Text
|
|
CREATE TABLE t AS (SELECT unnest([]));
|
||
|
|
COMMENT ON TABLE t IS /* this is just an example */ 'foo bar'; -- ignore me
|
||
|
|
|
||
|
|
select comment from duckdb_tables where table_name = 't';
|