9 lines
192 B
SQL
9 lines
192 B
SQL
CREATE FUNCTION pg_lock_hash_info()
|
|
RETURNS TABLE (
|
|
hash_type CHAR,
|
|
directory INT,
|
|
bucket_hash INT,
|
|
entries INT,
|
|
free_slots INT
|
|
) AS 'pg_lock_hash_info' LANGUAGE C STRICT;
|