cshannon commented on code in PR #3931:
URL: https://github.com/apache/accumulo/pull/3931#discussion_r1384919632


##########
test/src/main/java/org/apache/accumulo/test/MetaSplitIT.java:
##########
@@ -136,6 +166,15 @@ public void testMetadataTableSplit() throws Exception {
     }
   }
 
+  // Count the number of entries that can be read in the Metadata table
+  // This verifies all the entries can still be read after splits/merges
+  // when ranged files are used
+  private void verifyMetadataTableScan(AccumuloClient client) throws Exception 
{
+    // There should be 50 entries, 5 entries per Tablet
+    assertEquals(50,
+        client.createScanner(MetadataTable.NAME, 
Authorizations.EMPTY).stream().count());

Review Comment:
   Thanks I'll make that change



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to