citus/src/backend/distributed/citus--6.1-6--6.1-7.sql

13 lines
474 B
SQL

/* citus--6.1-6--6.1-7.sql */
SET search_path = 'pg_catalog';
CREATE FUNCTION get_shard_id_for_distribution_column(table_name regclass, distribution_value "any" DEFAULT NULL)
RETURNS bigint
LANGUAGE C
AS 'MODULE_PATHNAME', $$get_shard_id_for_distribution_column$$;
COMMENT ON FUNCTION get_shard_id_for_distribution_column(table_name regclass, distribution_value "any")
IS 'return shard id which belongs to given table and contains given value';
RESET search_path;