diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-04-02 15:43:32 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-04-02 15:45:45 -0300 |
commit | 11074f26bc072334ab91e5646d113f95f884bd07 (patch) | |
tree | 365cf15f79bec3b1ab0d9d2f137fd8d54b278543 /src | |
parent | ab0dfc961b6a821f23d9c40c723d11380ce195a6 (diff) | |
download | postgresql-11074f26bc072334ab91e5646d113f95f884bd07.tar.gz postgresql-11074f26bc072334ab91e5646d113f95f884bd07.zip |
Update expected output for modified catalog definition
Pilot error in previous commit
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/expected/rules.out | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/regress/expected/rules.out b/src/test/regress/expected/rules.out index 51d7a150cfb..dae772d33a2 100644 --- a/src/test/regress/expected/rules.out +++ b/src/test/regress/expected/rules.out @@ -1867,9 +1867,9 @@ pg_stat_progress_create_index| SELECT s.pid, WHEN 1 THEN 'waiting for old snapshots'::text WHEN 2 THEN ('building index'::text || COALESCE((': '::text || pg_indexam_progress_phasename((s.param9)::oid, s.param11)), ''::text)) WHEN 3 THEN 'waiting for writer snapshots'::text - WHEN 4 THEN 'index validation: scan index'::text - WHEN 5 THEN 'index validation: sort index scan results'::text - WHEN 6 THEN 'index validation: scan heap'::text + WHEN 4 THEN 'index validation: scanning index'::text + WHEN 5 THEN 'index validation: sorting tuples'::text + WHEN 6 THEN 'index validation: scanning table'::text WHEN 7 THEN 'waiting for reader snapshots'::text ELSE NULL::text END AS phase, |