diff options
Diffstat (limited to 'src/test/regress/expected/union.out')
-rw-r--r-- | src/test/regress/expected/union.out | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/test/regress/expected/union.out b/src/test/regress/expected/union.out index 7189f5bd3d2..6e72e92d801 100644 --- a/src/test/regress/expected/union.out +++ b/src/test/regress/expected/union.out @@ -751,15 +751,15 @@ explain (costs off) UNION ALL SELECT ab FROM t2) t ORDER BY 1 LIMIT 8; - QUERY PLAN ------------------------------------------------- + QUERY PLAN +----------------------------------------------------- Limit -> Merge Append Sort Key: ((t1.a || t1.b)) -> Index Scan using t1_ab_idx on t1 - -> Index Scan using t1c_ab_idx on t1c + -> Index Scan using t1c_ab_idx on t1c t1_1 -> Index Scan using t2_pkey on t2 - -> Index Scan using t2c_pkey on t2c + -> Index Scan using t2c_pkey on t2c t2_1 (7 rows) SELECT * FROM @@ -798,8 +798,8 @@ select event_id Sort Key: events.event_id -> Index Scan using events_pkey on events -> Sort - Sort Key: events_child.event_id - -> Seq Scan on events_child + Sort Key: events_1.event_id + -> Seq Scan on events_child events_1 -> Index Scan using other_events_pkey on other_events (7 rows) |