mirror of https://github.com/citusdata/citus.git
19 lines
596 B
SQL
19 lines
596 B
SQL
--
|
|
-- TASK_TRACKER_CREATE_TABLE
|
|
--
|
|
|
|
|
|
ALTER SEQUENCE pg_catalog.pg_dist_shardid_seq RESTART 1070000;
|
|
ALTER SEQUENCE pg_catalog.pg_dist_jobid_seq RESTART 1070000;
|
|
|
|
|
|
-- New table definitions to test the task tracker process and protocol
|
|
|
|
CREATE TABLE lineitem_simple_task ( LIKE lineitem );
|
|
CREATE TABLE lineitem_compute_task ( LIKE lineitem );
|
|
CREATE TABLE lineitem_compute_update_task ( LIKE lineitem );
|
|
|
|
CREATE TABLE lineitem_partition_task_part_00 ( LIKE lineitem );
|
|
CREATE TABLE lineitem_partition_task_part_01 ( LIKE lineitem );
|
|
CREATE TABLE lineitem_partition_task_part_02 ( LIKE lineitem );
|