keith-turner commented on a change in pull request #2152:
URL: https://github.com/apache/accumulo/pull/2152#discussion_r648461139
##########
File path:
core/src/main/java/org/apache/accumulo/core/metadata/schema/TabletsMetadata.java
##########
@@ -144,8 +164,24 @@ private TabletsMetadata buildNonRoot(AccumuloClient
client) {
}
}
+ private void configureColumns(ScannerBase scanner) {
+ for (Text fam : families) {
+ scanner.fetchColumnFamily(fam);
+ }
+
+ for (ColumnFQ col : qualifiers) {
+ col.fetch(scanner);
+ }
+
+ if (families.isEmpty() && qualifiers.isEmpty()) {
+ fetchedCols = EnumSet.allOf(ColumnType.class);
+ }
+ }
+
@Override
public Options checkConsistency() {
+ Preconditions.checkState(extents == null,
Review comment:
f017626
--
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]