File tree 2 files changed +4
-8
lines changed
2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 29
29
- TEST_PLATFORM=std PYTHON_VERSION=3 PG_VERSION=10
30
30
- TEST_PLATFORM=std.all PYTHON_VERSION=3 PG_VERSION=17
31
31
- TEST_PLATFORM=ubuntu-24_04 PYTHON_VERSION=3 PG_VERSION=17
32
-
33
- matrix :
34
- allow_failures :
35
- - env : TEST_PLATFORM=std PYTHON_VERSION=3 PG_VERSION=11
36
- - env : TEST_PLATFORM=std PYTHON_VERSION=3 PG_VERSION=10
Original file line number Diff line number Diff line change @@ -1464,9 +1464,6 @@ def test_set_auto_conf(self):
1464
1464
["archive_command" ,
1465
1465
"cp '%p' \" /mnt/server/archivedir/%f\" " ,
1466
1466
"'cp \\ '%p\\ ' \" /mnt/server/archivedir/%f\" " ],
1467
- ["restore_command" ,
1468
- 'cp "/mnt/server/archivedir/%f" \' %p\' ' ,
1469
- "'cp \" /mnt/server/archivedir/%f\" \\ '%p\\ ''" ],
1470
1467
["log_line_prefix" ,
1471
1468
"'\n \r \t \b \\ \" " ,
1472
1469
"'\\ \' \\ n\\ r\\ t\\ b\\ \\ \" " ],
@@ -1480,6 +1477,10 @@ def test_set_auto_conf(self):
1480
1477
3 ,
1481
1478
"3" ]
1482
1479
]
1480
+ if pg_version_ge ('12' ):
1481
+ testData .append (["restore_command" ,
1482
+ 'cp "/mnt/server/archivedir/%f" \' %p\' ' ,
1483
+ "'cp \" /mnt/server/archivedir/%f\" \\ '%p\\ ''" ])
1483
1484
1484
1485
with get_new_node () as node :
1485
1486
node .init ().start ()
You can’t perform that action at this time.
0 commit comments