Commit f129a58 1 parent 40c5f8e commit f129a58 Copy full SHA for f129a58
File tree 1 file changed +3
-3
lines changed
core/src/main/java/org/apache/accumulo/core/metadata/schema
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 43
43
public interface TabletMetadataCheck {
44
44
45
45
Set <TabletMetadata .ColumnType > ALL_COLUMNS =
46
- Collections .unmodifiableSet (EnumSet .noneOf (TabletMetadata .ColumnType .class ));
46
+ Collections .unmodifiableSet (EnumSet .allOf (TabletMetadata .ColumnType .class ));
47
47
48
48
boolean canUpdate (TabletMetadata tabletMetadata );
49
49
50
50
/**
51
- * Determines what tablet metadata columns are read on the server side. Return the empty set to
52
- * read all tablet metadata columns .
51
+ * Determines what tablet metadata columns are read on the server side. Return
52
+ * {@link #ALL_COLUMNS} to read all of a tablets metadata .
53
53
*/
54
54
default Set <TabletMetadata .ColumnType > columnsToRead () {
55
55
return ALL_COLUMNS ;
You can’t perform that action at this time.
0 commit comments