"Johann Zuschlag" <[EMAIL PROTECTED]> writes: > create function numeric_neq(numeric,float8) returns bool as ' > select $1 = $2::numeric; > ' language 'sql';
> create operator <> ( > leftarg=numeric, > rightarg=float8, > procedure=numeric_neq, > commutator='<>', > negator='', ^^^^^^^^^^ > restrict=eqsel, > join=eqjoinsel > ); Well, there's your problem... For 7.2, I have added some error checking to the system that will prevent it accepting invalid operator names in commutator/negator parameters. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])