> > CREATE OPERATOR testbit ( > leftarg = bitset, > rightarg = int4, > procedure = testbit, > commutator = testbit > ); > > Now we have a big problem, as the DROP OPERATOR command > cannot delete the illegally named operator. Have you tried deleting it directly from pg_operator instead of using DROP OPERATOR? Darren
- [HACKERS] Bug in CREATE OPERATOR Christopher Kings-Lynne
- Re: [HACKERS] Bug in CREATE OPERATOR Darren King
- Re: [HACKERS] Bug in CREATE OPERATOR Tom Lane