Re: Polymorphism resgression test fails when BLCKSZ changed

From: j6m(at)cvni(dot)net
To: "pgsql-bugs(at)postgresql(dot)org" <pgsql-bugs(at)postgresql(dot)org>
Cc: "\"j6m(at)cvni(dot)net\" <j6m(at)cvni(dot)net>; Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Subject: Re: Polymorphism resgression test fails when BLCKSZ changed
Date: 2004-12-21 17:59:36
Message-ID: 1103651976.41c864889c424@213.244.11.231
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


It appears to be just that.

Great, It works!

*** ./expected/polymorphism.out Wed Dec 1 20:00:56 2004
--- ./results/polymorphism.out Tue Dec 21 19:06:12 2004
***************
*** 349,532 ****
select f3, myaggp01a(*) from t group by f3;
f3 | myaggp01a
----+-----------
c | {}
a | {}
- b | {}
(3 rows)

select f3, myaggp03a(*) from t group by f3;
f3 | myaggp03a
----+-----------
c | {}
a | {}
- b | {}
(3 rows)

select f3, myaggp03b(*) from t group by f3;
f3 | myaggp03b
----+-----------
c | {}
a | {}
- b | {}
(3 rows)

select f3, myaggp05a(f1) from t group by f3;
f3 | myaggp05a
----+-----------
c | {1,2}
a | {1,2,3}
- b | {1,2,3}
(3 rows)

select f3, myaggp06a(f1) from t group by f3;
f3 | myaggp06a
----+-----------
c | {}
a | {}
- b | {}
(3 rows)

---8<--- SNIP ---

--- 349,532 ----
select f3, myaggp01a(*) from t group by f3;
f3 | myaggp01a
----+-----------
+ b | {}
c | {}
a | {}
(3 rows)

select f3, myaggp03a(*) from t group by f3;
f3 | myaggp03a
----+-----------
+ b | {}
c | {}
a | {}
(3 rows)

select f3, myaggp03b(*) from t group by f3;
f3 | myaggp03b
----+-----------
+ b | {}
c | {}
a | {}
(3 rows)

----- Original Message -----
From: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: <j6m(at)cvni(dot)net>
Cc: <pgsql-bugs(at)postgresql(dot)org>
Sent: Tuesday, December 21, 2004 6:58 PM
Subject: Re: [BUGS] Polymorphism resgression test fails when BLCKSZ changed

> j6m(at)cvni(dot)net writes:
> > The regression test fails on 'polymorphism' on three different computers
with
> > various architectures.
>
> Define "fails" (regression diffs output would be nice).
>
> > Besides the configure options stated below, BLCKSZ was redefined from 8192
to
> > 16384 before running configure.
>
> If it's just a change in output row order then it's not a bug ...
>
> regards, tom lane

Browse pgsql-bugs by date

  From Date Subject
Next Message Bruce Momjian 2004-12-21 18:07:02 Re: Problems with "-w" option on pg_ctl.exe running as a windows
Previous Message Tom Lane 2004-12-21 17:58:38 Re: Polymorphism resgression test fails when BLCKSZ changed