mirror of https://github.com/citusdata/citus.git
23 lines
921 B
SQL
23 lines
921 B
SQL
-- citus--7.0-7--7.0-8.sql
|
|
|
|
SET search_path = 'pg_catalog';
|
|
|
|
DROP FUNCTION master_activate_node(text, integer);
|
|
CREATE FUNCTION master_activate_node(nodename text,
|
|
nodeport integer,
|
|
OUT nodeid integer,
|
|
OUT groupid integer,
|
|
OUT nodename text,
|
|
OUT nodeport integer,
|
|
OUT noderack text,
|
|
OUT hasmetadata boolean,
|
|
OUT isactive bool,
|
|
OUT noderole noderole)
|
|
RETURNS record
|
|
LANGUAGE C STRICT
|
|
AS 'MODULE_PATHNAME',$$master_activate_node$$;
|
|
COMMENT ON FUNCTION master_activate_node(nodename text, nodeport integer)
|
|
IS 'activate a node which is in the cluster';
|
|
|
|
RESET search_path;
|