mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
56f3fb3ba1
but no permissions check at all is certainly no good.) Clean up usage of some deprecated APIs.
14 lines
450 B
MySQL
14 lines
450 B
MySQL
-- Adjust this setting to control where the objects get created.
|
|
SET search_path = public;
|
|
|
|
CREATE OR REPLACE FUNCTION pgrowlocks(IN relname text,
|
|
OUT locked_row TID, -- row TID
|
|
OUT lock_type TEXT, -- lock type
|
|
OUT locker XID, -- locking XID
|
|
OUT multi bool, -- multi XID?
|
|
OUT xids xid[], -- multi XIDs
|
|
OUT pids INTEGER[]) -- locker's process id
|
|
RETURNS SETOF record
|
|
AS 'MODULE_PATHNAME', 'pgrowlocks'
|
|
LANGUAGE C STRICT;
|