Skip to content

Commit

Permalink
Fix orca test
Browse files Browse the repository at this point in the history
  • Loading branch information
oppenheimer01 committed Jan 7, 2024
1 parent f592d04 commit c01e084
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,13 @@ explain (costs off) delete from tab1 using tab2, tab3 where tab1.a = tab2.a and
-> Redistribute Motion 3:3 (slice1; segments: 3)
Hash Key: tab1_1.b
-> Hash Join
Hash Cond: (tab3.a = tab1_1.b)
-> Seq Scan on tab3
Hash Cond: (tab2.a = tab1_1.a)
-> Seq Scan on tab2
-> Hash
-> Broadcast Motion 3:3 (slice2; segments: 3)
-> Hash Join
Hash Cond: (tab2.a = tab1_1.a)
-> Seq Scan on tab2
Hash Cond: (tab3.a = tab1_1.b)
-> Seq Scan on tab3
-> Hash
-> Broadcast Motion 3:3 (slice3; segments: 3)
-> Seq Scan on tab1 tab1_1
Expand All @@ -162,13 +162,13 @@ explain (costs off) update tab1 set a = 999 from tab2, tab3 where tab1.a = tab2.
Hash Key: tab1_1.b
-> Split
-> Hash Join
Hash Cond: (tab3.a = tab1_1.b)
-> Seq Scan on tab3
Hash Cond: (tab2.a = tab1_1.a)
-> Seq Scan on tab2
-> Hash
-> Broadcast Motion 3:3 (slice2; segments: 3)
-> Hash Join
Hash Cond: (tab2.a = tab1_1.a)
-> Seq Scan on tab2
Hash Cond: (tab3.a = tab1_1.b)
-> Seq Scan on tab3
-> Hash
-> Broadcast Motion 3:3 (slice3; segments: 3)
-> Seq Scan on tab1 tab1_1
Expand Down
6 changes: 3 additions & 3 deletions src/test/regress/expected/uao_catalog_tables.out
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ select * from gp_toolkit.__gp_aovisimap_hidden_info('uao_table_check_hidden_tup_
-------+-----------------+----------------
1 | 0 | 0
2 | 0 | 0
1 | 0 | 1
1 | 0 | 0
2 | 0 | 0
1 | 0 | 5
1 | 0 | 0
2 | 0 | 0
(6 rows)

Expand Down Expand Up @@ -334,7 +334,7 @@ select * from gp_toolkit.__gp_aovisimap_hidden_info('uao_table_check_hidden_tup_
2 | 0 | 5
1 | 0 | 0
2 | 0 | 4
1 | 0 | 8
1 | 0 | 0
2 | 0 | 1
(6 rows)

0 comments on commit c01e084

Please sign in to comment.