Re: [HACKERS] New patch to try...

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: scrappy(at)hub(dot)org (The Hermit Hacker)
Cc: pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] New patch to try...
Date: 1998-03-17 22:06:22
Message-ID: 199803172206.RAA24360@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

>
>
> Things have been nice and quiet, so here is a patch that, unless anything
> else goes in in between now and Sunday, will be the official post-release
> patch...if something is missing from it, you only hvae yourself to blame
> for not testing it :)
>
> ftp.postgresql.org/pub/patches/.test/v6.3p1beta2.gz
>
> Hidden like the last one :) Should apply easier, as its a true patch this
> time
>

Both David and I have patches ready for tonight. David's is for
spinlock looping, and mine will test UNIONs to make sure each query has
the same number of target fields and the same types:

test=> select usename from pg_user union select usename, usename from pg_user;
ERROR: Each UNION query must have the same number of columns.
test=> select usename from pg_user union select usesysid from pg_user;
ERROR: Each UNION query must have identical target types.

--
Bruce Momjian | 830 Blythe Avenue
maillist(at)candle(dot)pha(dot)pa(dot)us | Drexel Hill, Pennsylvania 19026
+ If your life is a hard drive, | (610) 353-9879(w)
+ Christ can be your backup. | (610) 853-3000(h)

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 1998-03-17 22:09:22 Re: [PATCHES] Fixes for initdb on DEC Alpha
Previous Message ocie 1998-03-17 21:07:11 Re: [HACKERS] Re: Multi field hash indexes