mirror of https://github.com/citusdata/citus.git
27 lines
766 B
SQL
27 lines
766 B
SQL
CREATE TABLE alter_am(i int);
|
|
|
|
INSERT INTO alter_am SELECT generate_series(1,1000000);
|
|
|
|
SELECT * FROM columnar.options WHERE relation = 'alter_am'::regclass;
|
|
SELECT SUM(i) FROM alter_am;
|
|
|
|
ALTER TABLE alter_am
|
|
SET ACCESS METHOD columnar,
|
|
SET (columnar.compression = pglz, fillfactor = 20);
|
|
|
|
SELECT * FROM columnar.options WHERE relation = 'alter_am'::regclass;
|
|
SELECT SUM(i) FROM alter_am;
|
|
|
|
ALTER TABLE alter_am SET ACCESS METHOD heap;
|
|
|
|
-- columnar options should be gone
|
|
SELECT * FROM columnar.options WHERE relation = 'alter_am'::regclass;
|
|
SELECT SUM(i) FROM alter_am;
|
|
|
|
-- error: setting columnar options must happen after converting to columnar
|
|
ALTER TABLE alter_am
|
|
SET (columnar.stripe_row_limit = 1111),
|
|
SET ACCESS METHOD columnar;
|
|
|
|
DROP TABLE alter_am;
|