blob: 34ae2e7a28f5b60cacfd4d887e466f4d38978da0 [file] [log] [blame]
-- Test SHOW CREATE TABLE on a table with partitions and column comments.
CREATE EXTERNAL TABLE tmp_showcrt1_n2 (key string, newvalue boolean COMMENT 'a new value')
COMMENT 'temporary table'
PARTITIONED BY (value bigint COMMENT 'some value');
SHOW CREATE TABLE tmp_showcrt1_n2;
DROP TABLE tmp_showcrt1_n2;