Re: [BUGS] Bug #627:

2002-03-29 Thread Tom Lane
[EMAIL PROTECTED] writes: > create table t1 (f1 real); > insert into t1 values(1.01); > select * from t1 where f1 > 1.01; regression=# create table t1 (f1 real); CREATE regression=# insert into t1 values(1.01); INSERT 139787 1 regression=# select * from t1 where f1 > 1.01; f1 (0 rows) And

Re: [BUGS] Bug #627:

2002-03-29 Thread Stephan Szabo
On Fri, 29 Mar 2002 [EMAIL PROTECTED] wrote: > Harish Rao ([EMAIL PROTECTED]) reports a bug with a severity of 4 > The lower the number the more severe it is. > > Short Description > > > Long Description > create table t1 (f1 real); > insert into t1 values(1.01); > select * from t1 where f1 > 1.0

[BUGS] Bug #627:

2002-03-28 Thread pgsql-bugs
Harish Rao ([EMAIL PROTECTED]) reports a bug with a severity of 4 The lower the number the more severe it is. Short Description Long Description create table t1 (f1 real); insert into t1 values(1.01); select * from t1 where f1 > 1.01; Sample Code create table t1 (f1 real); insert into t1 valu