citus/src/backend/distributed/sql/udfs/undistribute_table/9.5-1.sql

10 lines
289 B
SQL

CREATE OR REPLACE FUNCTION pg_catalog.undistribute_table(
table_name regclass)
RETURNS VOID
LANGUAGE C STRICT
AS 'MODULE_PATHNAME', $$undistribute_table$$;
COMMENT ON FUNCTION pg_catalog.undistribute_table(
table_name regclass)
IS 'undistributes a distributed table';