| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | Joe Conway <mail(at)joeconway(dot)com> |
| Cc: | pgsql-patches(at)postgresql(dot)org |
| Subject: | Re: contrib/dblink GRANTs and regression test fix |
| Date: | 2002-09-14 20:31:49 |
| Message-ID: | 13664.1032035509@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-patches |
Joe Conway <mail(at)joeconway(dot)com> writes:
> The attached adds GRANTs to PUBLIC for dblink functions, removes the
> non-standard regression test, and adds standard installcheck regression test
> support.
> The test creates a second database (regression_slave) and drops it again, in
> order to avoid the cheesy-ness of connecting back to the same database ;-)
Applied. The method for dropping the second database seems pretty
cheesy itself, though; and wouldn't it make it harder to investigate
the cause of a test failure, if one occurs? I think I'd vote for
getting rid of the trailing wait() and DROP and instead doing
\set ECHO none
DROP DATABASE regression_slave;
\set ECHO all
CREATE DATABASE regression_slave;
at the top.
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2002-09-14 20:32:14 | Re: one more small dblink fix |
| Previous Message | Tom Lane | 2002-09-14 20:15:01 | Re: contrib/cube & contrib/seg regression fixes |