mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-03 08:00:21 +08:00
591abe1b72
any commutator operator for =(chkpass,text), so this was creating a shell operator that would fail on use. Found by opr_sanity testing.
14 lines
218 B
SQL
14 lines
218 B
SQL
SET search_path = public;
|
|
|
|
DROP OPERATOR <>(chkpass, text);
|
|
|
|
DROP OPERATOR =(chkpass, text);
|
|
|
|
DROP FUNCTION ne(chkpass, text);
|
|
|
|
DROP FUNCTION eq(chkpass, text);
|
|
|
|
DROP FUNCTION raw(chkpass);
|
|
|
|
DROP TYPE chkpass CASCADE;
|