mirror of https://github.com/citusdata/citus.git
bump setting to be in bounds
parent
1f7d92b2ff
commit
861045a7bb
|
@ -18,7 +18,7 @@ CREATE TABLE columnar_table_1(a INT, b INT) USING columnar;
|
|||
INSERT INTO columnar_table_1 SELECT i FROM generate_series(160001, 320000) i;
|
||||
CREATE TABLE columnar_table_2(b INT) USING columnar;
|
||||
SELECT alter_columnar_table_set('columnar_table_2',
|
||||
chunk_group_row_limit => 100,
|
||||
chunk_group_row_limit => 1000,
|
||||
stripe_row_limit => 1000);
|
||||
alter_columnar_table_set
|
||||
---------------------------------------------------------------------
|
||||
|
|
|
@ -16,7 +16,7 @@ INSERT INTO columnar_table_1 SELECT i FROM generate_series(160001, 320000) i;
|
|||
|
||||
CREATE TABLE columnar_table_2(b INT) USING columnar;
|
||||
SELECT alter_columnar_table_set('columnar_table_2',
|
||||
chunk_group_row_limit => 100,
|
||||
chunk_group_row_limit => 1000,
|
||||
stripe_row_limit => 1000);
|
||||
INSERT INTO columnar_table_2 SELECT i FROM generate_series(1600, 3500) i;
|
||||
|
||||
|
|
Loading…
Reference in New Issue