mirror of https://github.com/citusdata/citus.git
9 lines
306 B
SQL
9 lines
306 B
SQL
CREATE FUNCTION pg_catalog.citus_backend_gpid()
|
|
RETURNS BIGINT
|
|
LANGUAGE C STRICT
|
|
AS 'MODULE_PATHNAME',$$citus_backend_gpid$$;
|
|
COMMENT ON FUNCTION pg_catalog.citus_backend_gpid()
|
|
IS 'returns gpid of the current backend';
|
|
|
|
GRANT EXECUTE ON FUNCTION pg_catalog.citus_backend_gpid() TO PUBLIC;
|