Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
liuneng1994 committed Sep 28, 2023
1 parent 3a8402b commit 1f50efc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,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 1f50efc

Please sign in to comment.