pgsql: Don't use an Msys virtual path to create a tablespace

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Don't use an Msys virtual path to create a tablespace
Date: 2018-03-19 21:56:28
Message-ID: E1ey2lY-0001Gk-BR@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Don't use an Msys virtual path to create a tablespace

The new unlogged_reinit recovery tests create a new tablespace using
TestLib.pm's tempdir. However, on msys that function returns a virtual
path that isn't understood by Postgres. Here we add a new function to
TestLib.pm to turn such a path into a real path on the underlying file
system, and use it in the new test to create the tablespace. The new
function is essentially a NOOP everywhere but msys.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9ad21a6957ff2d8743e9a59ba062d3c009b24ec4

Modified Files
--------------
src/test/perl/TestLib.pm | 18 ++++++++++++++++++
src/test/recovery/t/014_unlogged_reinit.pl | 4 +++-
2 files changed, 21 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andrew Dunstan 2018-03-19 21:58:16 Re: pgsql: Add tests for reinit.c
Previous Message Tom Lane 2018-03-19 21:23:42 pgsql: Fix performance hazard in REFRESH MATERIALIZED VIEW CONCURRENTLY