Thread: regression test HAVING fixed

regression test HAVING fixed

From
Bruce Momjian
Date:
I have fixed the problem I introduced with aggregates.  They should work
now, and the HAVING regression test should work too.

--  Bruce Momjian                        |  http://www.op.net/~candle maillist@candle.pha.pa.us            |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


Re: [HACKERS] regression test HAVING fixed

From
Tom Lane
Date:
Bruce Momjian <maillist@candle.pha.pa.us> writes:
> I have fixed the problem I introduced with aggregates.  They should work
> now, and the HAVING regression test should work too.

Also, I put in Vadim's recommended fix for the subplan problem.
The regression tests look a lot better than they did.  The "union"
test is still failing by adding a bunch of
NOTICE:  equal: don't know whether nodes of type 600 are equal

lines to the expected output.  Anybody know what's causing that?
        regards, tom lane


Re: [HACKERS] regression test HAVING fixed

From
Vadim Mikheev
Date:
Tom Lane wrote:
> 
> Bruce Momjian <maillist@candle.pha.pa.us> writes:
> > I have fixed the problem I introduced with aggregates.  They should work
> > now, and the HAVING regression test should work too.
> 
> Also, I put in Vadim's recommended fix for the subplan problem.
> The regression tests look a lot better than they did.  The "union"
> test is still failing by adding a bunch of
> 
>         NOTICE:  equal: don't know whether nodes of type 600 are equal
> 
> lines to the expected output.  Anybody know what's causing that?

Type 600 is Query node. Attempt to compare Queries?
Try gdb with break point @ equalfuncs.c:746...

Vadim