ctubbsii commented on a change in pull request #1799:
URL: https://github.com/apache/accumulo/pull/1799#discussion_r529054827
##########
File path:
core/src/main/java/org/apache/accumulo/core/metadata/schema/TabletsMetadata.java
##########
@@ -182,6 +183,8 @@ public Options fetch(ColumnType... colsToFetch) {
case SCANS:
families.add(ScanFileColumnFamily.NAME);
break;
+ case SUSPEND:
+
families.add(SuspendLocationColumn.SUSPEND_COLUMN.getColumnFamily());
Review comment:
This needs a break statement to avoid unintentional fall-through:
```suggestion
families.add(SuspendLocationColumn.SUSPEND_COLUMN.getColumnFamily());
break;
```
----------------------------------------------------------------
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]