kadirozde commented on code in PR #2015:
URL: https://github.com/apache/phoenix/pull/2015#discussion_r1833261061
##########
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:
This is not necessary (reviewed by Tanuj)
--
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]