citus/src/test/regress/sql/arbitrary_configs_truncate_...

16 lines
545 B
SQL

CREATE SCHEMA truncate_partition_tests_schema;
SET search_path TO truncate_partition_tests_schema;
-- partioned table
CREATE TABLE partitioned_table(a int) PARTITION BY RANGE(a);
CREATE TABLE partitioned_table_0 PARTITION OF partitioned_table
FOR VALUES FROM (1) TO (6);
CREATE TABLE partitioned_table_1 PARTITION OF partitioned_table
FOR VALUES FROM (6) TO (11);
-- distribute tables
SELECT create_distributed_table('partitioned_table', 'a');
-- fill tables with data
INSERT INTO partitioned_table(a) SELECT n FROM generate_series(1, 10) n;