twalthr commented on code in PR #23084:
URL: https://github.com/apache/flink/pull/23084#discussion_r1276012516
##########
flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/catalog/UnknownCatalogTest.java:
##########
@@ -55,6 +56,52 @@ public class UnknownCatalogTest {
public static final ResolvedSchema EXPECTED_SCHEMA =
ResolvedSchema.of(Column.physical("i", INT()),
Column.physical("s", STRING()));
+ public static final ResolvedSchema CURRENT_TIMESTAMP_EXPECTED_SCHEMA =
+ ResolvedSchema.of(Column.physical("CURRENT_TIMESTAMP",
TIMESTAMP_LTZ(3).notNull()));
+
+ @Test
+ public void testUnsetCatalogWithSelect1() throws Exception {
Review Comment:
Let's drop this. Tests should fulfill a purpose. If a test does not touch
the code that is modified, it is not necessary.
--
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]