mirror of https://github.com/citusdata/citus.git
13 lines
440 B
SQL
13 lines
440 B
SQL
/* citus--6.0-15--6.0-16.sql */
|
|
|
|
SET search_path = 'pg_catalog';
|
|
|
|
CREATE FUNCTION mark_tables_colocated(source_table_name regclass, target_table_names regclass[])
|
|
RETURNS void
|
|
LANGUAGE C STRICT
|
|
AS 'MODULE_PATHNAME', $$mark_tables_colocated$$;
|
|
COMMENT ON FUNCTION mark_tables_colocated(source_table_name regclass, target_table_names regclass[])
|
|
IS 'mark target distributed tables as colocated with the source table';
|
|
|
|
RESET search_path;
|