You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"create table t1 using parquet as select array(id, id+1) c1, array(id+2, id+3) c2, array() c3, array(null) c4, cast(null as array<int>) c5 from range(10)")
3240
-
checkSparkAnswerAndOperator("select concat(c1, c2) AS x FROM t1")
3241
-
checkSparkAnswerAndOperator("select concat(c1, c1) AS x FROM t1")
3242
-
checkSparkAnswerAndOperator("select concat(c1, c2, c3) AS x FROM t1")
3243
-
checkSparkAnswerAndOperator("select concat(c1, c2, c3, c5) AS x FROM t1")
3244
-
checkSparkAnswerAndOperator(
3245
-
"select concat(concat(c1, c2, c3), concat(c1, c3)) AS x FROM t1")
3240
+
"create table t1 using parquet as select array(id, id+1) c1, array(id+2, id+3) c2, CAST(array() AS array<int>) c3, CAST(array(null) as array<int>) c4, cast(null as array<int>) c5 from range(10)")
3241
+
checkSparkAnswerAndFallbackReason(
3242
+
"select concat(c1, c2) AS x FROM t1",
3243
+
CometConcat.unsupportedReason)
3244
+
checkSparkAnswerAndFallbackReason(
3245
+
"select concat(c1, c1) AS x FROM t1",
3246
+
CometConcat.unsupportedReason)
3247
+
checkSparkAnswerAndFallbackReason(
3248
+
"select concat(c1, c2, c3) AS x FROM t1",
3249
+
CometConcat.unsupportedReason)
3250
+
checkSparkAnswerAndFallbackReason(
3251
+
"select concat(c1, c2, c3, c5) AS x FROM t1",
3252
+
CometConcat.unsupportedReason)
3253
+
checkSparkAnswerAndFallbackReason(
3254
+
"select concat(concat(c1, c2, c3), concat(c1, c3)) AS x FROM t1",
"create table t1 using parquet as select cast(uuid() as binary) c1, cast(uuid() as binary) c2, cast(uuid() as binary) c3, cast(uuid() as binary) c4, cast(null as binary) c5 from range(10)")
3254
-
checkSparkAnswerAndOperator("select concat(c1, c2) AS x FROM t1")
3255
-
checkSparkAnswerAndOperator("select concat(c1, c1) AS x FROM t1")
3256
-
checkSparkAnswerAndOperator("select concat(c1, c2, c3) AS x FROM t1")
3257
-
checkSparkAnswerAndOperator("select concat(c1, c2, c3, c5) AS x FROM t1")
3258
-
checkSparkAnswerAndOperator(
3259
-
"select concat(concat(c1, c2, c3), concat(c1, c3)) AS x FROM t1")
3264
+
checkSparkAnswerAndFallbackReason(
3265
+
"select concat(c1, c2) AS x FROM t1",
3266
+
CometConcat.unsupportedReason)
3267
+
checkSparkAnswerAndFallbackReason(
3268
+
"select concat(c1, c1) AS x FROM t1",
3269
+
CometConcat.unsupportedReason)
3270
+
checkSparkAnswerAndFallbackReason(
3271
+
"select concat(c1, c2, c3) AS x FROM t1",
3272
+
CometConcat.unsupportedReason)
3273
+
checkSparkAnswerAndFallbackReason(
3274
+
"select concat(c1, c2, c3, c5) AS x FROM t1",
3275
+
CometConcat.unsupportedReason)
3276
+
checkSparkAnswerAndFallbackReason(
3277
+
"select concat(concat(c1, c2, c3), concat(c1, c3)) AS x FROM t1",
0 commit comments