maksaska commented on code in PR #317: URL: https://github.com/apache/ignite-extensions/pull/317#discussion_r2280329306
########## modules/cdc-ext/src/main/java/org/apache/ignite/cdc/postgresql/IgniteToPostgreSqlCdcApplier.java: ########## @@ -364,27 +272,33 @@ public long applyCacheEvents(Iterator<CdcCacheEvent> evts, boolean createTables) while (evts.hasNext()) { evt = evts.next(); - if (evt.queryEntities().size() != 1) - throw new IgniteException("There should be exactly 1 QueryEntity for cacheId: " + evt.cacheId()); + try { + if (evt.queryEntities().size() != 1) + throw new IgniteException("There should be exactly 1 QueryEntity for cacheId: " + evt.cacheId()); Review Comment: Yep. But there is no difference I guess. Moved it out of the block -- 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