kadirozde commented on code in PR #2015: URL: https://github.com/apache/phoenix/pull/2015#discussion_r1833440787
########## phoenix-core-client/src/main/java/org/apache/phoenix/index/IndexMaintainer.java: ########## @@ -183,7 +185,8 @@ public static Iterator<PTable> maintainedGlobalIndexesWithMatchingStorageScheme( @Override public boolean apply(PTable index) { return sendIndexMaintainer(index) && IndexUtil.isGlobalIndex(index) - && dataTable.getImmutableStorageScheme() == index.getImmutableStorageScheme(); + && (dataTable.getImmutableStorageScheme() == index.getImmutableStorageScheme() + && !CDCUtil.isCDCIndex(index)); Review Comment: It turns out that it was required. -- 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: issues-unsubscr...@phoenix.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org