ivandasch commented on code in PR #9973:
URL: https://github.com/apache/ignite/pull/9973#discussion_r850256313


##########
modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/H2DynamicTableSelfTest.java:
##########
@@ -619,6 +621,29 @@ public void testQueryParallelism() {
         assertQueryParallelism("QP_OVERWRITE_TEMPLATE", 42);
     }
 
+    /**
+     * Test keywords in table name.
+     * Try to create table with all keywords.
+     */
+    @Test
+    public void testCreateTableWithKeywordName() {
+        int i = 0;
+
+        Set<String> keywords = SqlKeyword.getKeywords();
+
+        for (String entry : keywords

Review Comment:
   Sasha, Zhenya meant that you didn't have to implement the public method 
`getKeywords()` just for testing purposes.
   You should use `U.staticField(SqlKeyword.class, "KEYWORDS")`



-- 
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]

Reply via email to