Skip to content

Commit c35ec77

Browse files
committed
feat: support concat for strings
1 parent c726eb8 commit c35ec77

File tree

1 file changed

+4
-1
lines changed
  • fuzz-testing/src/main/scala/org/apache/comet/fuzz

1 file changed

+4
-1
lines changed

fuzz-testing/src/main/scala/org/apache/comet/fuzz/Meta.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,10 @@ object Meta {
137137
SparkBinaryType,
138138
SparkArrayType(
139139
SparkTypeOneOf(Seq(SparkStringType, SparkNumericType, SparkBinaryType))))))),
140-
createFunctionWithInputTypes("concat", Seq(SparkStringType, SparkStringType)), // TODO: variadic
140+
createFunctionWithInputTypes(
141+
"concat",
142+
Seq(SparkStringType, SparkStringType)
143+
), // TODO: variadic
141144
createFunctionWithInputTypes("concat_ws", Seq(SparkStringType, SparkStringType)),
142145
createFunctionWithInputTypes("contains", Seq(SparkStringType, SparkStringType)),
143146
createFunctionWithInputTypes("ends_with", Seq(SparkStringType, SparkStringType)),

0 commit comments

Comments
 (0)