mirror of
https://github.com/postgres/postgres.git
synced 2026-04-14 05:27:20 -04:00
Fix ORDER BY clause in new regression test of REINDEX CONCURRENTLY
Oversight in bd12080.
Reported-by: Justin Pryzby
Discussion: https://postgr.es/m/20210210065805.GG20012@telsasoft.com
Backpatch-through: 12
This commit is contained in:
parent
8493831385
commit
c6cd20d91c
2 changed files with 2 additions and 2 deletions
|
|
@ -2505,7 +2505,7 @@ SELECT attrelid::regclass, attnum, attstattarget
|
|||
'concur_exprs_index_expr'::regclass,
|
||||
'concur_exprs_index_pred'::regclass,
|
||||
'concur_exprs_index_pred_2'::regclass)
|
||||
ORDER BY 'concur_exprs_index_expr'::regclass::text, attnum;
|
||||
ORDER BY attrelid::regclass::text, attnum;
|
||||
attrelid | attnum | attstattarget
|
||||
---------------------------+--------+---------------
|
||||
concur_exprs_index_expr | 1 | 100
|
||||
|
|
|
|||
|
|
@ -1034,7 +1034,7 @@ SELECT attrelid::regclass, attnum, attstattarget
|
|||
'concur_exprs_index_expr'::regclass,
|
||||
'concur_exprs_index_pred'::regclass,
|
||||
'concur_exprs_index_pred_2'::regclass)
|
||||
ORDER BY 'concur_exprs_index_expr'::regclass::text, attnum;
|
||||
ORDER BY attrelid::regclass::text, attnum;
|
||||
DROP TABLE concur_exprs_tab;
|
||||
|
||||
-- Temporary tables and on-commit actions, where CONCURRENTLY is ignored.
|
||||
|
|
|
|||
Loading…
Reference in a new issue