experiments-postgresql-locks/pg_lock_hash_info--1.0.sql
2025-04-03 01:39:57 -04:00

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;