mirror of https://github.com/citusdata/citus.git
24 lines
698 B
SQL
24 lines
698 B
SQL
CREATE SCHEMA truncate_tests_schema;
|
|
SET search_path TO truncate_tests_schema;
|
|
|
|
-- simple table
|
|
CREATE TABLE basic_table(a int);
|
|
|
|
-- 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('basic_table', 'a');
|
|
SELECT create_distributed_table('partitioned_table', 'a');
|
|
|
|
-- fill tables with data
|
|
INSERT INTO basic_table(a) SELECT n FROM generate_series(1, 10) n;
|
|
INSERT INTO partitioned_table(a) SELECT n FROM generate_series(1, 10) n;
|
|
|
|
|
|
|