panbingkun commented on code in PR #38438:
URL: https://github.com/apache/spark/pull/38438#discussion_r1010013950
##########
sql/core/src/test/java/test/org/apache/spark/sql/JavaColumnExpressionSuite.java:
##########
@@ -81,10 +81,13 @@ public void isInCollectionCheckExceptionMessage() {
Dataset<Row> df = spark.createDataFrame(rows, schema);
Exception e = Assert.assertThrows(Exception.class,
() -> df.filter(df.col("a").isInCollection(Arrays.asList(new
Column("b")))));
- Arrays.asList("cannot resolve",
- "due to data type mismatch: Arguments must be same type but were")
- .forEach(s ->
- Assert.assertTrue(e.getMessage().toLowerCase(Locale.ROOT)
- .contains(s.toLowerCase(Locale.ROOT))));
+ System.out.println(e.getMessage().toLowerCase(Locale.ROOT));
+ Arrays.asList(
+ "datatype_mismatch.data_diff_types",
+ "cannot resolve \"(a in (b))\"",
+ "due to data type mismatch: input to `in` should all be the same type, "
+
+ "but it's [\"int\", \"array<int>\"].").forEach(s ->
+ Assert.assertTrue(e.getMessage().toLowerCase(Locale.ROOT)
+ .contains(s.toLowerCase(Locale.ROOT))));
Review Comment:
I will check:
1.Exception Type -> AnalysisException
2.Error classes.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]