Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb22a36a

Browse files
committed
Fix pg_rewind regression tests in VPATH builds
Should call just "pg_rewind", instead of "./pg_rewind". The tests are calledso that PATH contains the temporariy installation bin dir.Per report from Alvaro Herrera
1 parent53ba107 commitb22a36a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/bin/pg_rewind/RewindTest.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ sub run_pg_rewind
224224
# Stop the master and be ready to perform the rewind
225225
system_or_bail("pg_ctl -w -D$test_standby_datadir stop -m fast >>$log_path 2>&1");
226226
my$result =
227-
run(['./pg_rewind',
227+
run(['pg_rewind',
228228
"--debug",
229229
"--source-pgdata=$test_standby_datadir",
230230
"--target-pgdata=$test_master_datadir"],
@@ -235,7 +235,7 @@ sub run_pg_rewind
235235
{
236236
# Do rewind using a remote connection as source
237237
my$result =
238-
run(['./pg_rewind',
238+
run(['pg_rewind',
239239
"--source-server","port=$port_standby dbname=postgres",
240240
"--target-pgdata=$test_master_datadir"],
241241
'>>',$log_path,'2>&1');

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp