Github user keith-turner commented on a diff in the pull request:

    https://github.com/apache/accumulo/pull/234#discussion_r107487883
  
    --- Diff: proxy/src/main/thrift/proxy.thrift ---
    @@ -369,6 +382,19 @@ service AccumuloProxy
       bool testTableClassLoad (1:binary login, 2:string tableName, 3:string 
className                     
                                , 4:string asTypeName)                          
                            throws (1:AccumuloException ouch1, 
2:AccumuloSecurityException ouch2, 3:TableNotFoundException ouch3);
     
    +  //namespace operations
    +  string systemNamespace (1:binary login);
    +  string defaultNamespace (1:binary login);
    +  bool namespaceExists (1:binary login, 2:string namespaceName)            
                            throws (1:AccumuloException ouch1, 
2:AccumuloSecurityException ouch2);
    +  set<string> listNamespaces (1:binary login)                              
                            throws (1:AccumuloException ouch1, 
2:AccumuloSecurityException ouch2);
    +  void createNamespace (1:binary login, 2:string namespaceName)            
                            throws (1:AccumuloException ouch1, 
2:AccumuloSecurityException ouch2, 3:NamespaceExistsException ouch3);
    +  void deleteNamespace (1:binary login, 2:string namespaceName)            
                            throws (1:AccumuloException ouch1, 
2:AccumuloSecurityException ouch2, 3:NamespaceNotFoundException ouch3, 
4:NamespaceNotEmptyException ouch4);
    +  void renameNamespace (1:binary login, 2:string oldNamespace, 3:string 
newNamespace)                  throws (1:AccumuloException ouch1, 
2:AccumuloSecurityException ouch2, 3:NamespaceNotFoundException ouch3, 
4:NamespaceExistsException ouch4);
    +  void setNamespaceProperty (1:binary login, 2:string namespaceName, 
3:string property, 4:string value)throws (1:AccumuloException ouch1, 
2:AccumuloSecurityException ouch2, 3:NamespaceNotFoundException ouch3);
    --- End diff --
    
    I didn't see test for namespace props


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to