1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-28 05:21:27 +03:00

pg_amcheck: Keep trying to fix the tests.

Fix another example of non-portable option ordering in the tests.
Oversight in 24189277f.

Mark Dilger

Discussion: https://postgr.es/m/C37D28BA-3BA3-4776-B812-17F05F3472D8@enterprisedb.com
This commit is contained in:
Tom Lane 2021-03-13 00:06:56 -05:00
parent de91c3b976
commit 9e294d0f34

View File

@ -468,7 +468,7 @@ command_fails_like(
'pg_amcheck rejects garbage startblock');
command_fails_like(
[ @cmd, 'db1', '-s', 's5', '--endblock', '1234junk' ],
[ @cmd, '-s', 's5', '--endblock', '1234junk', 'db1' ],
qr/invalid end block/,
'pg_amcheck rejects garbage endblock');