Re: Correction: Working on "SELECT * WHERE numeric_col = - Mailing list pgsql-general

From Stephan Szabo
Subject Re: Correction: Working on "SELECT * WHERE numeric_col =
Date
Msg-id 20011213175317.B6001-100000@megazone23.bigpanda.com
Whole thread Raw
In response to Correction: Working on "SELECT * WHERE numeric_col = 2001.2" problem?  ("Bob Jones" <bjones@autoresourcesinc.com>)
List pgsql-general
On Thu, 13 Dec 2001, Bob Jones wrote:

> I would like to correct a misprint on my original post. Earlier I stated:
>
> ... an error stating that the '-' operator is unidentified for numeric and
> float8 types....
>
> The "unidentified operator" should be the "=" operator (as shown correctly
> in the SQL query example of my original post), not the "-" operator as
> previously mentioned.

Well, the current easiest way to get around it is to either explicitly
cast the constant to numeric or single quote it (otherwise it's treated
as float8).  Although you could get rid of the error by defining the
functions and making the operators, I'm not sure what'd be involved in
getting index scans to work properly.

There's been talk about working on the type system stuff for int, float,
numeric, etc, but I don't think a concensus was reached on what should be
done (you can check the hackers archives).


pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Working on "SELECT * WHERE numeric_col = 2001.2" problem?
Next
From: Darren Ferguson
Date:
Subject: Re: storing intermediate results from recursive plpgsql