pgsql: Get rid of useless global variable in pg_upgrade.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Get rid of useless global variable in pg_upgrade.
Date: 2012-07-18 05:23:25
Message-ID: E1SrMjN-0006F4-N4@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Get rid of useless global variable in pg_upgrade.

Since the scandir() emulation was taken out of pg_upgrade, there's
no longer any need for scandir_file_pattern to exist as a global
variable. Replace it with a local in the one remaining function
that was making use of it.

Branch
------
REL9_2_STABLE

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

Modified Files
--------------
contrib/pg_upgrade/pg_upgrade.h | 1 -
contrib/pg_upgrade/relfilenode.c | 19 +++++++++----------
2 files changed, 9 insertions(+), 11 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2012-07-18 14:22:45 pgsql: Syntax support and documentation for event triggers.
Previous Message Tom Lane 2012-07-18 05:13:38 pgsql: Improve pg_upgrade's load_directory() function.