Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
zml1206 committed Oct 8, 2024
1 parent 9ab4b46 commit 492e074
Showing 1 changed file with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2841,21 +2841,21 @@ class AdaptiveQueryExecSuite
"""
|SELECT tt2.value
|FROM (
| SELECT value
| FROM t1
| WHERE NOT EXISTS (
| SELECT 1
| FROM (
| SELECT t2.id
| FROM t2
| JOIN t3 ON t2.id = t3.id
| AND t2.id > 100
| ) tt
| WHERE t1.value = tt.id
| )
| AND t1.value = 1
| SELECT value
| FROM t1
| WHERE NOT EXISTS (
| SELECT 1
| FROM (
| SELECT t2.id
| FROM t2
| JOIN t3 ON t2.id = t3.id
| AND t2.id > 100
| ) tt
| WHERE t1.value = tt.id
| )
| AND t1.value = 1
|) tt2
| LEFT JOIN t4 ON tt2.value = t4.id
| LEFT JOIN t4 ON tt2.value = t4.id
|""".stripMargin
)
assert(findTopLevelBroadcastNestedLoopJoin(adaptivePlan).size == 1)
Expand Down

0 comments on commit 492e074

Please sign in to comment.