mirror of https://github.com/citusdata/citus.git
9 lines
399 B
SQL
9 lines
399 B
SQL
DROP FUNCTION IF EXISTS public.master_update_shard_statistics(shard_id bigint);
|
|
|
|
CREATE OR REPLACE FUNCTION pg_catalog.master_update_shard_statistics(shard_id bigint)
|
|
RETURNS bigint
|
|
LANGUAGE C STRICT
|
|
AS 'MODULE_PATHNAME', $$master_update_shard_statistics$$;
|
|
COMMENT ON FUNCTION master_update_shard_statistics(bigint)
|
|
IS 'updates shard statistics and returns the updated shard size';
|