Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
liuneng1994 committed Oct 31, 2023
1 parent 6ebb3f2 commit de46b01
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,8 @@ class GlutenClickHouseTPCHColumnarShuffleParquetAQESuite
val sql =
"""
|select a, b from (
|select n_regionkey as a, collect_set(if(n_regionkey=0, n_name, null)) as set from nation group by n_regionkey)
|select n_regionkey as a, collect_set(if(n_regionkey=0, n_name, null))
| as set from nation group by n_regionkey)
|lateral view explode(set) as b
|order by a, b
|""".stripMargin
Expand Down

0 comments on commit de46b01

Please sign in to comment.