Examples
Remove the power operator a^b for type integer:
DROP OPERATOR ^ (integer, integer);
Remove the left unary bitwise complement operator
~b for type bit:
DROP OPERATOR ~ (none, bit);
Remove the right unary factorial operator x!
for type bigint:
DROP OPERATOR ! (bigint, none);