blob: 08d07e5f2c1af9ce05d0b128e742985d0e905752 [file] [log] [blame]
--! qt:dataset:src
-- Tests attempting to truncate a column in a table that doesn't exist
CREATE TABLE test_tab (key STRING, value STRING) STORED AS RCFILE;
INSERT OVERWRITE TABLE test_tab SELECT * FROM src;
TRUNCATE TABLE test_tab COLUMNS (doesnt_exist);