Fix one more TAP test to use standard command-line argument ordering.

Commit 84c08a7649b8c6dd488dfe0e37ab017e8059cd33 should have been
back-patched into 9.4, but was not, so this test continued to pass for
the wrong reason there.  Noted while investigating other failures.
This commit is contained in:
Tom Lane 2016-01-07 17:36:43 -05:00
parent 882c592d0c
commit 33b051293a

View File

@ -25,7 +25,7 @@ command_ok([ 'initdb', '-X', "$tempdir/pgxlog", "$tempdir/data" ],
system_or_bail "rm -rf '$tempdir'/*";
command_fails(
[ 'initdb', "$tempdir/data", '-X', 'pgxlog' ],
[ 'initdb', '-X', 'pgxlog', "$tempdir/data" ],
'relative xlog directory not allowed');
system_or_bail "rm -rf '$tempdir'/*";