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@sss.pgh.pa.us>
To: <j6m@cvni.net>
Cc: <pgsql-bugs@postgresql.org>
Sent: Tuesday, December 21, 2004 6:58 PM
Subject: Re: [BUGS] Polymorphism resgression test fails when BLCKSZ changed
> j6m@cvni.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