kevinrr888 commented on code in PR #5740: URL: https://github.com/apache/accumulo/pull/5740#discussion_r2210925608
########## core/src/test/java/org/apache/accumulo/core/metadata/schema/TabletMetadataTest.java: ########## @@ -103,9 +110,11 @@ import com.google.common.net.HostAndPort; public class TabletMetadataTest { + private HashSet<ColumnType> recordedCalls = new HashSet<>(); @Test public void testAllColumns() { + var allColumns = Arrays.stream(TabletMetadata.ColumnType.class.getEnumConstants()); Review Comment: TabletMetadata.ColumnType.values() is a simpler way to get this -- 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-unsubscr...@accumulo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org