Re: Comparing Numeric and Double Precision (float8)..

Поиск
Список
Период
Сортировка
От Terry Yapt
Тема Re: Comparing Numeric and Double Precision (float8)..
Дата
Msg-id 3DC685B0.D92E88E3@technovell.com
обсуждение исходный текст
Ответ на Comparing Numeric and Double Precision (float8)..  (Terry Yapt <pgsql@technovell.com>)
Список pgsql-sql
Great....

I don't know if my customers can wait until 7.3 official release, but
I'll try to distract them a bit... :-\

Thanks a lot Bruno... 

Bruno Wolff III wrote:
> 
> On Mon, Nov 04, 2002 at 09:11:30 +0100,
>   Terry Yapt <pgsql@technovell.com> wrote:
> >
> > When I compare a numeric(x,0) field with a float8 field I have an error
> > on PostgreSQL what I didn't have with Oracle.  I mean:
> >
> > CREATE test (one numeric(2,0));
> >
> > SELECT * FROM test WHERE one = 1.00000;
> 
> With 7.3b3 the above works after correcting the create statement.
> bruno=> create table test (one numeric(2,0));
> CREATE TABLE
> bruno=> SELECT * FROM test WHERE one = 1.00000;
>  one
> -----
> (0 rows)


В списке pgsql-sql по дате отправления:

Предыдущее
От: Bruno Wolff III
Дата:
Сообщение: Re: Comparing Numeric and Double Precision (float8)..
Следующее
От: Ben Kassel
Дата:
Сообщение: Problem with Auto Increment