mirror of https://github.com/citusdata/citus.git
21 lines
707 B
SQL
21 lines
707 B
SQL
/* citus--6.1-4--6.1-5.sql */
|
|
|
|
SET search_path = 'pg_catalog';
|
|
|
|
DROP FUNCTION create_distributed_table(regclass, text, citus.distribution_type);
|
|
|
|
CREATE FUNCTION create_distributed_table(table_name regclass,
|
|
distribution_column text,
|
|
distribution_type citus.distribution_type DEFAULT 'hash',
|
|
colocate_with text DEFAULT 'default')
|
|
RETURNS void
|
|
LANGUAGE C STRICT
|
|
AS 'MODULE_PATHNAME', $$create_distributed_table$$;
|
|
COMMENT ON FUNCTION create_distributed_table(table_name regclass,
|
|
distribution_column text,
|
|
distribution_type citus.distribution_type,
|
|
colocate_with text)
|
|
IS 'creates a distributed table';
|
|
|
|
RESET search_path;
|