mirror of https://github.com/citusdata/citus.git
Update sql script
parent
6348faf7d3
commit
2c50101074
|
@ -91,10 +91,7 @@ CREATE TABLE citus.pg_dist_cleanup (
|
||||||
ALTER TABLE citus.pg_dist_cleanup SET SCHEMA pg_catalog;
|
ALTER TABLE citus.pg_dist_cleanup SET SCHEMA pg_catalog;
|
||||||
GRANT SELECT ON pg_catalog.pg_dist_cleanup TO public;
|
GRANT SELECT ON pg_catalog.pg_dist_cleanup TO public;
|
||||||
|
|
||||||
|
-- Sequence used to generate operation Ids and record Ids in pg_dist_cleanup_record.
|
||||||
-- Sequence used to generate an operation ID for use in pg_dist_cleanup_record.
|
|
||||||
-- Right now, move is hardcoded to 1 (this will change with parallel moves), so
|
|
||||||
-- start with a higher number.
|
|
||||||
CREATE SEQUENCE citus.pg_dist_operationid_seq;
|
CREATE SEQUENCE citus.pg_dist_operationid_seq;
|
||||||
ALTER SEQUENCE citus.pg_dist_operationid_seq SET SCHEMA pg_catalog;
|
ALTER SEQUENCE citus.pg_dist_operationid_seq SET SCHEMA pg_catalog;
|
||||||
GRANT SELECT ON pg_catalog.pg_dist_operationid_seq TO public;
|
GRANT SELECT ON pg_catalog.pg_dist_operationid_seq TO public;
|
||||||
|
|
Loading…
Reference in New Issue