Change datatype from integer to bigint

users/saawasek/non_blocking_split_integrated
Sameer Awasekar 2022-05-27 12:57:15 +05:30
parent daae0bb10d
commit cbc4a4a11c
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
CREATE OR REPLACE FUNCTION pg_catalog.split_shard_replication_setup(
shardInfo integer[][])
shardInfo bigint[][])
RETURNS bigint
LANGUAGE C STRICT
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'

View File

@ -1,7 +1,7 @@
CREATE OR REPLACE FUNCTION pg_catalog.split_shard_replication_setup(
shardInfo integer[][])
shardInfo bigint[][])
RETURNS bigint
LANGUAGE C STRICT
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'