mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	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;
 |