pgsql: Rename a function to avoid naming conflict in parallel regressio

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Rename a function to avoid naming conflict in parallel regressio
Date: 2013-07-06 15:17:04
Message-ID: E1UvUES-0006JF-JH@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Rename a function to avoid naming conflict in parallel regression tests.

Commit 31a891857a128828d47d93c63e041f3b69cbab70 added some tests in
plpgsql.sql that used a function rather unthinkingly named "foo()".
However, rangefuncs.sql has some much older tests that create a function
of that name, and since these test scripts run in parallel, there is a
chance of failures if the timing is just right. Use another name to
avoid that. Per buildfarm (failure seen today on "hamerkop", but
probably it's happened before and not been noticed).

Branch
------
REL9_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/e407192c937d993be1a4f5636a1afa57cf492f6f

Modified Files
--------------
src/test/regress/expected/plpgsql.out | 72 ++++++++++++++++-----------------
src/test/regress/sql/plpgsql.sql | 56 ++++++++++++-------------
2 files changed, 64 insertions(+), 64 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Claudio Freire 2013-07-06 15:58:01 Re: [COMMITTERS] pgsql: PL/Python: Convert numeric to Decimal
Previous Message Andrew Dunstan 2013-07-06 12:16:23 Re: [COMMITTERS] pgsql: PL/Python: Convert numeric to Decimal