Re: [HACKERS] bug? in current cvs with bigint datatype

2002-05-11 Thread Tom Lane
Barry Lind <[EMAIL PROTECTED]> writes: > create table test (cola bigint); > update test set cola = 100; > ERROR: column "cola" is of type 'bigint' but expression is of type > 'double precision' > You will need to rewrite or cast the expression dtoi8 is currently marked "not proimp

[HACKERS] bug? in current cvs with bigint datatype

2002-05-10 Thread Barry Lind
I just did a fresh build from current cvs and found the following regression from 7.2: create table test (cola bigint); update test set cola = 100; In 7.3 the update results in the following error: ERROR: column "cola" is of type 'bigint' but expression is of type 'double precision'