citus/src/backend/distributed/sql/udfs/worker_nextval/latest.sql

7 lines
276 B
SQL

CREATE FUNCTION pg_catalog.worker_nextval(sequence regclass)
RETURNS int
LANGUAGE C STRICT
AS 'MODULE_PATHNAME', $$worker_nextval$$;
COMMENT ON FUNCTION pg_catalog.worker_nextval(regclass)
IS 'calculates nextval() for column defaults of type int or smallint';