mirror of https://github.com/citusdata/citus.git
9 lines
371 B
SQL
9 lines
371 B
SQL
DROP FUNCTION master_update_shard_statistics(shard_id bigint);
|
|
|
|
CREATE 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';
|