You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2021/07/15 21:36:34 UTC

[GitHub] [accumulo] Manno15 commented on a change in pull request #2189: Make Ample only return exact matches for KeyExtents

Manno15 commented on a change in pull request #2189:
URL: https://github.com/apache/accumulo/pull/2189#discussion_r670821339



##########
File path: core/src/main/java/org/apache/accumulo/core/metadata/schema/TabletsMetadata.java
##########
@@ -173,7 +177,9 @@ private TabletsMetadata buildNonRoot(AccumuloClient client) {
             new IsolatedScanner(client.createScanner(resolvedTable, Authorizations.EMPTY));
         scanner.setRange(range);
 
-        if (checkConsistency && !fetchedCols.contains(ColumnType.PREV_ROW)) {
+        boolean extentsAreNull = extentsToFetch == null;
+
+        if ((checkConsistency && !fetchedCols.contains(ColumnType.PREV_ROW)) || !extentsAreNull) {

Review comment:
       I will help investigate. 




-- 
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-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org