mirror of https://github.com/citusdata/citus.git
Add missing type
parent
b5b14ed0bd
commit
bdbaf34df2
|
@ -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[],
|
||||
|
|
|
@ -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[],
|
||||
|
|
Loading…
Reference in New Issue