Re: [HACKERS] float4 problem

2002-11-20 Thread Tom Lane
Doug McNaught <[EMAIL PROTECTED]> writes: > Oleg Bartunov <[EMAIL PROTECTED]> writes: >> May be I miss something, but seems there is a problem with float4 >> in 7.2.3 and 7.3RC1 (6.53 works fine): >> >> test=# create table t ( a float4); >> CREATE TABLE >> test=# insert into t values (0.1); >> INS

Re: [HACKERS] float4 problem

2002-11-20 Thread Doug McNaught
Oleg Bartunov <[EMAIL PROTECTED]> writes: > May be I miss something, but seems there is a problem with float4 > in 7.2.3 and 7.3RC1 (6.53 works fine): > > test=# create table t ( a float4); > CREATE TABLE > test=# insert into t values (0.1); > INSERT 32789 1 > test=# select * from t where a=0.1;