This is an automated email from the ASF dual-hosted git repository.
kturner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push:
new f129a587f7 fixes AmpleConditionalWriterIT (#5325)
f129a587f7 is described below
commit f129a587f74ba81131ccf01a33e315fd001ce5a9
Author: Keith Turner <[email protected]>
AuthorDate: Tue Feb 11 13:20:22 2025 -0500
fixes AmpleConditionalWriterIT (#5325)
---
.../apache/accumulo/core/metadata/schema/TabletMetadataCheck.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/core/src/main/java/org/apache/accumulo/core/metadata/schema/TabletMetadataCheck.java
b/core/src/main/java/org/apache/accumulo/core/metadata/schema/TabletMetadataCheck.java
index 14c97f625a..8aed438fe8 100644
---
a/core/src/main/java/org/apache/accumulo/core/metadata/schema/TabletMetadataCheck.java
+++
b/core/src/main/java/org/apache/accumulo/core/metadata/schema/TabletMetadataCheck.java
@@ -43,13 +43,13 @@ import java.util.Set;
public interface TabletMetadataCheck {
Set<TabletMetadata.ColumnType> ALL_COLUMNS =
-
Collections.unmodifiableSet(EnumSet.noneOf(TabletMetadata.ColumnType.class));
+
Collections.unmodifiableSet(EnumSet.allOf(TabletMetadata.ColumnType.class));
boolean canUpdate(TabletMetadata tabletMetadata);
/**
- * Determines what tablet metadata columns are read on the server side.
Return the empty set to
- * read all tablet metadata columns.
+ * Determines what tablet metadata columns are read on the server side.
Return
+ * {@link #ALL_COLUMNS} to read all of a tablets metadata.
*/
default Set<TabletMetadata.ColumnType> columnsToRead() {
return ALL_COLUMNS;