Vladsz83 commented on code in PR #11824: URL: https://github.com/apache/ignite/pull/11824#discussion_r1954179620
########## modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java: ########## @@ -995,6 +1016,51 @@ public void testPrimaryKeyInlineSize() { "MY_TABLE", 5 + 3); } + /** */ + @Test + public void testNonPersistentRejoinsWithDynamicTablesOverPredefinedCaches() throws Exception { + stopAllGrids(); + + try { + persistence = false; + + CacheConfiguration<?, ?> cacheCfg = new CacheConfiguration<>("TEST_CACHE") + .setBackups(1) + .setCacheMode(CacheMode.PARTITIONED) + .setAtomicityMode(CacheAtomicityMode.TRANSACTIONAL) + .setWriteSynchronizationMode(CacheWriteSynchronizationMode.PRIMARY_SYNC); + + cacheConfigurations = new CacheConfiguration<?, ?>[] {cacheCfg}; + + client = startGrids(3); + + sql("CREATE TABLE IF NOT EXISTS TEST_TBL(ID INTEGER PRIMARY KEY, VAL VARCHAR) WITH \"CACHE_NAME=TEST_CACHE\""); + + assertEquals(0, sql("SELECT * FROM TEST_TBL").size()); + + int testGrid = 2; + + stopGrid(testGrid); + startGrid(testGrid); + + awaitPartitionMapExchange(); + + for (int i = 0; i < 100; ++i) + assertEquals(1, sql("INSERT INTO TEST_TBL VALUES(" + (i + 1) + ", '" + (i + 1000) + "')").size()); + + assertEquals(100, grid(testGrid).cache("TEST_CACHE").size()); + + assertEquals(100, sql("SELECT * FROM TEST_TBL").size()); + } + finally { + persistence = true; + + afterTestsStopped(); + + beforeTestsStarted(); Review Comment: Hm. For H2 - yes, sure. This is a common schema sharing problem. For persistent cluster I checked without data erasing. Looks like works also for inactive cluster. Ok, for this cases a new test class would be more handy. -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org