snuyanzin commented on code in PR #20850:
URL: https://github.com/apache/flink/pull/20850#discussion_r978511413
##########
flink-table/flink-sql-parser-hive/src/test/java/org/apache/flink/sql/parser/hive/FlinkHiveSqlParserImplTest.java:
##########
@@ -560,4 +560,36 @@ void testExplainUpsert() {
String expected = "EXPLAIN UPSERT INTO `EMPS1`\n" + "VALUES (ROW(1,
2))";
this.sql(sql).ok(expected);
}
+
+ /**
+ * Here we override the super method to avoid test error from `ARRAY_AGG`
supported in original
+ * calcite.
+ */
+ @Disabled
+ @Test
+ void testArrayAgg() {}
+
+ /**
+ * Here we override the super method to avoid test error from `GROUP
CONCAT` supported in
+ * original calcite.
+ */
+ @Disabled
+ @Test
+ void testGroupConcat() {}
+
+ /**
+ * Here we override the super method to avoid test error from `STRING_AGG`
supported in original
+ * calcite.
+ */
+ @Disabled
+ @Test
+ void testStringAgg() {}
+
+ /**
+ * Here we override the super method to avoid test error from `EXPLAIN AS
DOT` supported in
+ * original calcite.
+ */
+ @Disabled
+ @Test
+ void testExplainAsDot() {}
}
Review Comment:
Explain as dot was introduced in Calcite at
https://issues.apache.org/jira/browse/CALCITE-4260
--
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]