pgsql: Use plain mkdir() not pg_mkdir_p() to create subdirectories of P - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Use plain mkdir() not pg_mkdir_p() to create subdirectories of P
Date
Msg-id E1aHH52-0001k9-Md@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Use plain mkdir() not pg_mkdir_p() to create subdirectories of PGDATA.

When we're creating subdirectories of PGDATA during initdb, we know darn
well that the parent directory exists (or should exist) and that the new
subdirectory doesn't (or shouldn't).  There is therefore no need to use
anything more complicated than mkdir().  Using pg_mkdir_p() just opens us
up to unexpected failure modes, such as the one exhibited in bug #13853
from Nuri Boardman.  It's not very clear why pg_mkdir_p() went wrong there,
but it is clear that we didn't need to be trying to create parent
directories in the first place.  We're not even saving any code, as proven
by the fact that this patch nets out at minus five lines.

Since this is a response to a field bug report, back-patch to all branches.

Branch
------
REL9_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/882c592d0c0cfc29a8265f382316c58cb8b81c66

Modified Files
--------------
src/bin/initdb/initdb.c |   49 +++++++++++++++++++++--------------------------
1 file changed, 22 insertions(+), 27 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Use plain mkdir() not pg_mkdir_p() to create subdirectories of P
Next
From: Tom Lane
Date:
Subject: pgsql: Use plain mkdir() not pg_mkdir_p() to create subdirectories of P