Re: [HACKERS] Bug in CREATE OPERATOR

2000-12-20 Thread Tom Lane
"Christopher Kings-Lynne" <[EMAIL PROTECTED]> writes: > [ "CREATE OPERATOR testbit" is accepted ] Not only that, but it looks like you can create aggregate functions and types that have operator-like names :-(. Someone was way too eager to save a production or two, I think: DefineStmt: CREATE

RE: [HACKERS] Bug in CREATE OPERATOR

2000-12-20 Thread Darren King
> > 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 in