mirror of https://github.com/citusdata/citus.git
Update migration sql scripts.
parent
cd69b975a3
commit
7701ca12e0
|
@ -1,9 +1,3 @@
|
||||||
-- citus--11.2-1--11.3-1
|
-- citus--11.2-1--11.3-1
|
||||||
|
|
||||||
CREATE FUNCTION worker_modify_identity_columns(regclass)
|
#include "udfs/worker_modify_identity_columns/11.3-1.sql"
|
||||||
RETURNS VOID
|
|
||||||
LANGUAGE C STRICT
|
|
||||||
AS 'MODULE_PATHNAME', $$worker_modify_identity_columns$$;
|
|
||||||
COMMENT ON FUNCTION worker_modify_identity_columns(regclass)
|
|
||||||
IS 'modify identity columns to produce globally unique values';
|
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
-- citus--11.3-1--11.2-1
|
-- citus--11.3-1--11.2-1
|
||||||
DROP FUNCTION worker_modify_identity_columns(regclass);
|
DROP FUNCTION IF EXISTS worker_modify_identity_columns(regclass);
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
CREATE OR REPLACE FUNCTION worker_modify_identity_columns(regclass)
|
||||||
|
RETURNS VOID
|
||||||
|
LANGUAGE C STRICT
|
||||||
|
AS 'MODULE_PATHNAME', $$worker_modify_identity_columns$$;
|
||||||
|
COMMENT ON FUNCTION worker_modify_identity_columns(regclass)
|
||||||
|
IS 'modify identity columns to produce globally unique values';
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
CREATE OR REPLACE FUNCTION worker_modify_identity_columns(regclass)
|
||||||
|
RETURNS VOID
|
||||||
|
LANGUAGE C STRICT
|
||||||
|
AS 'MODULE_PATHNAME', $$worker_modify_identity_columns$$;
|
||||||
|
COMMENT ON FUNCTION worker_modify_identity_columns(regclass)
|
||||||
|
IS 'modify identity columns to produce globally unique values';
|
||||||
|
|
Loading…
Reference in New Issue