mirror of
https://github.com/postgres/postgres.git
synced 2026-03-14 14:42:30 -04:00
Fix duplicated test case in TAP tests of reindexdb
The same test for REINDEX (VERBOSE) was done twice, while it is clear
that the second test should use --concurrently. Issue introduced in
5dc92b8, for what looks like a copy-paste mistake.
Reviewed-by: Mark Dilger
Discussion: https://postgr.es/m/A7AE97EA-F4B0-4CAB-8FFF-3FECD31F9D63@enterprisedb.com
Backpatch-through: 12
This commit is contained in:
parent
262eb990c7
commit
0f1b0c0b60
1 changed files with 3 additions and 3 deletions
|
|
@ -64,9 +64,9 @@ $node->issues_sql_like(
|
|||
$node->command_fails([ 'reindexdb', '--concurrently', '-s', 'postgres' ],
|
||||
'reindex system tables concurrently');
|
||||
$node->issues_sql_like(
|
||||
[ 'reindexdb', '-v', '-t', 'test1', 'postgres' ],
|
||||
qr/statement: REINDEX \(VERBOSE\) TABLE public\.test1;/,
|
||||
'reindex with verbose output');
|
||||
[ 'reindexdb', '--concurrently', '-v', '-t', 'test1', 'postgres' ],
|
||||
qr/statement: REINDEX \(VERBOSE\) TABLE CONCURRENTLY public\.test1;/,
|
||||
'reindex with verbose output concurrently');
|
||||
|
||||
# connection strings
|
||||
$node->command_ok([qw(reindexdb --echo --table=pg_am dbname=template1)],
|
||||
|
|
|
|||
Loading…
Reference in a new issue