Skip to content

Commit 0847757

Browse files
committed
nit
1 parent e69f451 commit 0847757

File tree

1 file changed

+1
-1
lines changed
  • spark-3.4/clickhouse-spark/src/main/scala/org/apache/spark/sql/clickhouse

1 file changed

+1
-1
lines changed

spark-3.4/clickhouse-spark/src/main/scala/org/apache/spark/sql/clickhouse/ExprUtils.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ object ExprUtils extends SQLConfHelper with Serializable {
156156
): Expr = transform match {
157157
case IdentityTransform(fieldRefs) => FieldRef(fieldRefs.describe)
158158
case ApplyTransform(name, args) if functionRegistry.sparkToClickHouseFunc.contains(name) =>
159-
FuncExpr(functionRegistry.sparkToClickHouseFunc(name), args.map(arg => SQLExpr(arg.describe())).toList)
159+
FuncExpr(functionRegistry.sparkToClickHouseFunc(name), args.map(arg => SQLExpr(arg.describe)).toList)
160160
case bucket: BucketTransform => throw CHClientException(s"Bucket transform not support yet: $bucket")
161161
case other: Transform => throw CHClientException(s"Unsupported transform: $other")
162162
}

0 commit comments

Comments
 (0)