blob: 27fc203f66183b521a0fa0fc0d70aa50685b9321 [file] [log] [blame]
--! qt:dataset:src
DROP VIEW xxx4;
CREATE VIEW xxx4
PARTITIONED ON (value)
AS
SELECT * FROM src;
-- should fail: need to use ALTER VIEW, not ALTER TABLE
ALTER TABLE xxx4 ADD PARTITION (value='val_86');