File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
spark-3.4/clickhouse-spark/src/main/scala/org/apache/spark/sql/clickhouse Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments