priyankporwal commented on a change in pull request #765: PHOENIX-5841 add a 
counter for mismatching num of columns
URL: https://github.com/apache/phoenix/pull/765#discussion_r409935758
 
 

 ##########
 File path: 
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexToolVerificationResult.java
 ##########
 @@ -48,35 +48,43 @@
         long expiredIndexRowCount = 0;
         long missingIndexRowCount = 0;
         long invalidIndexRowCount = 0;
+        long mismatchingNumberOfCellsCount = 0;
 
         public void add(PhaseResult phaseResult) {
             validIndexRowCount += phaseResult.validIndexRowCount;
             expiredIndexRowCount += phaseResult.expiredIndexRowCount;
             missingIndexRowCount += phaseResult.missingIndexRowCount;
             invalidIndexRowCount += phaseResult.invalidIndexRowCount;
+            expiredIndexRowCount += phaseResult.mismatchingNumberOfCellsCount;
 
 Review comment:
   LHS is wrong here

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to