Skip to content

Commit

Permalink
fix concat diff
Browse files Browse the repository at this point in the history
  • Loading branch information
taiyang-li committed Dec 20, 2024
1 parent 0e68c14 commit f6f4f03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1455,7 +1455,7 @@ class GlutenClickHouseTPCHSaltNullParquetSuite extends GlutenClickHouseTPCHAbstr
"""
|select reverse(split(n_comment, ' ')), reverse(n_comment),
|concat(split(n_comment, ' ')), concat(n_comment), concat(n_comment, n_name),
|concat(split(n_comment, ' '), split(n_name, ' '))
|concat(split(n_comment, ' '), split(n_name, ' ')), concat(array()), concat(array(n_name))
|from nation
|""".stripMargin
runQueryAndCompare(sql)(checkGlutenOperatorMatch[ProjectExecTransformer])
Expand Down

0 comments on commit f6f4f03

Please sign in to comment.