mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
d77717bae7
on SerializableSnapshot, minor other cleanup. Marko Kreen, some further editorialization by me.
12 lines
381 B
SQL
12 lines
381 B
SQL
SET search_path = public;
|
|
|
|
DROP FUNCTION txid_current();
|
|
DROP FUNCTION txid_current_snapshot();
|
|
DROP FUNCTION txid_snapshot_xmin(txid_snapshot);
|
|
DROP FUNCTION txid_snapshot_xmax(txid_snapshot);
|
|
DROP FUNCTION txid_snapshot_xip(txid_snapshot);
|
|
DROP FUNCTION txid_visible_in_snapshot(bigint, txid_snapshot);
|
|
|
|
DROP TYPE txid_snapshot CASCADE;
|
|
-- need cascade to drop the I/O functions
|