Re: [BUGS] JDBC buggy in 7.1beta3

2001-01-26 Thread Barry Lind
This is no longer a problem in 7.1. The bug here was the same one introduced by the wrong version of Gunner's bytearray pooling patch being applied. It was fixed in current sources by Peter commenting out the bytearray pooling. thanks, --Barry Bruce Momjian wrote: > > Anyone fixing this bug?

Re: [BUGS] [HACKERS] We are not following the spec for HAVING without GROUP BY

2005-03-13 Thread Barry Lind
On Oracle 9.2 you get 0, 0, 0, and 2 rows. --Barry SQL> create table tab (col integer); Table created. SQL> select 1 from tab having 1=0; no rows selected SQL> select 1 from tab having 1=1; no rows selected SQL> insert into tab values (1); 1 row created. SQL> insert into tab values (2);