mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-18 18:44:06 +08:00
24 lines
490 B
MySQL
24 lines
490 B
MySQL
|
SET search_path = public;
|
||
|
|
||
|
DROP FUNCTION user_unlock_all();
|
||
|
|
||
|
DROP FUNCTION user_write_unlock_oid(int4);
|
||
|
|
||
|
DROP FUNCTION user_write_lock_oid(int4);
|
||
|
|
||
|
DROP FUNCTION user_write_unlock_oid(oid);
|
||
|
|
||
|
DROP FUNCTION user_write_lock_oid(oid);
|
||
|
|
||
|
DROP FUNCTION user_write_unlock(int4,oid);
|
||
|
|
||
|
DROP FUNCTION user_write_lock(int4,oid);
|
||
|
|
||
|
DROP FUNCTION user_write_unlock(int4,int4);
|
||
|
|
||
|
DROP FUNCTION user_write_lock(int4,int4);
|
||
|
|
||
|
DROP FUNCTION user_unlock(int4,int4,int4);
|
||
|
|
||
|
DROP FUNCTION user_lock(int4,int4,int4);
|