keith-turner commented on code in PR #5781:
URL: https://github.com/apache/accumulo/pull/5781#discussion_r2260769184


##########
test/src/main/java/org/apache/accumulo/test/NamespacesIT_SimpleSuite.java:
##########
@@ -871,78 +870,6 @@ public void testPermissions() throws Exception {
     }
   }
 
-  @Test
-  public void verifySystemPropertyInheritance() throws Exception {
-
-    try (AccumuloClient client =
-        getCluster().createAccumuloClient(getPrincipal(), new 
PasswordToken(getRootPassword()))) {
-      client.securityOperations().grantNamespacePermission(getPrincipal(), 
"accumulo",
-          NamespacePermission.ALTER_NAMESPACE);
-      client.securityOperations().grantNamespacePermission(getPrincipal(), "",
-          NamespacePermission.ALTER_NAMESPACE);
-    }
-
-    String t1 = "1";
-    String t2 = namespace + "." + t1;
-    c.tableOperations().create(t1);
-    c.namespaceOperations().create(namespace);
-    c.tableOperations().create(t2);
-
-    // verify iterator inheritance
-    _verifySystemPropertyInheritance(t1, t2, 
Property.TABLE_ITERATOR_PREFIX.getKey() + "scan.sum",

Review Comment:
   or is it even possible test this?  w/ this change are the props that can be 
set at the system and table level now disjoint?



-- 
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