/usr/share/postgresql/10/extension/citus--6.0-5--6.0-6.sql is in postgresql-10-citus 7.0.3.PGDG-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | CREATE FUNCTION worker_drop_distributed_table(logicalrelid Oid)
RETURNS VOID
LANGUAGE C STRICT
AS 'MODULE_PATHNAME', $$worker_drop_distributed_table$$;
COMMENT ON FUNCTION worker_drop_distributed_table(logicalrelid Oid)
IS 'drop the clustered table and its reference from metadata tables';
CREATE FUNCTION column_name_to_column(table_name regclass, column_name text)
RETURNS text
LANGUAGE C STRICT
AS 'MODULE_PATHNAME', $$column_name_to_column$$;
COMMENT ON FUNCTION column_name_to_column(table_name regclass, column_name text)
IS 'convert a column name to its textual Var representation';
|