mirror of https://github.com/citusdata/citus.git
Change datatype from integer to bigint
parent
daae0bb10d
commit
cbc4a4a11c
|
@ -1,7 +1,7 @@
|
||||||
CREATE OR REPLACE FUNCTION pg_catalog.split_shard_replication_setup(
|
CREATE OR REPLACE FUNCTION pg_catalog.split_shard_replication_setup(
|
||||||
shardInfo integer[][])
|
shardInfo bigint[][])
|
||||||
RETURNS bigint
|
RETURNS bigint
|
||||||
LANGUAGE C STRICT
|
LANGUAGE C STRICT
|
||||||
AS 'MODULE_PATHNAME', $$split_shard_replication_setup$$;
|
AS 'MODULE_PATHNAME', $$split_shard_replication_setup$$;
|
||||||
COMMENT ON FUNCTION pg_catalog.split_shard_replication_setup(shardInfo integer[][])
|
COMMENT ON FUNCTION pg_catalog.split_shard_replication_setup(shardInfo bigint[][])
|
||||||
IS 'Replication setup for splitting a shard'
|
IS 'Replication setup for splitting a shard'
|
|
@ -1,7 +1,7 @@
|
||||||
CREATE OR REPLACE FUNCTION pg_catalog.split_shard_replication_setup(
|
CREATE OR REPLACE FUNCTION pg_catalog.split_shard_replication_setup(
|
||||||
shardInfo integer[][])
|
shardInfo bigint[][])
|
||||||
RETURNS bigint
|
RETURNS bigint
|
||||||
LANGUAGE C STRICT
|
LANGUAGE C STRICT
|
||||||
AS 'MODULE_PATHNAME', $$split_shard_replication_setup$$;
|
AS 'MODULE_PATHNAME', $$split_shard_replication_setup$$;
|
||||||
COMMENT ON FUNCTION pg_catalog.split_shard_replication_setup(shardInfo integer[][])
|
COMMENT ON FUNCTION pg_catalog.split_shard_replication_setup(shardInfo bigint[][])
|
||||||
IS 'Replication setup for splitting a shard'
|
IS 'Replication setup for splitting a shard'
|
Loading…
Reference in New Issue