Add missing type

pull/6029/head
Nitish Upreti 2022-06-13 17:25:16 -07:00
parent b5b14ed0bd
commit bdbaf34df2
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,9 @@
-- Three modes to be implemented: blocking, non_blocking and auto.
-- Currently, the default / only supported mode is blocking.
CREATE TYPE citus.split_mode AS ENUM (
'blocking'
);
CREATE OR REPLACE FUNCTION pg_catalog.citus_split_shard_by_split_points(
shard_id bigint,
split_points integer[],

View File

@ -1,3 +1,9 @@
-- Three modes to be implemented: blocking, non_blocking and auto.
-- Currently, the default / only supported mode is blocking.
CREATE TYPE citus.split_mode AS ENUM (
'blocking'
);
CREATE OR REPLACE FUNCTION pg_catalog.citus_split_shard_by_split_points(
shard_id bigint,
split_points integer[],