Skip to content

Commit

Permalink
HBASE-22580 Add a table attribute to make user scan snapshot feature …
Browse files Browse the repository at this point in the history
…configurable for table
  • Loading branch information
mymeiyi committed Jun 28, 2019
1 parent b20044c commit 4da7e94
Show file tree
Hide file tree
Showing 4 changed files with 275 additions and 107 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,11 @@ public static ListMultimap<String, UserPermission> getNamespacePermissions(Confi
false);
}

public static ListMultimap<String, UserPermission> getGlobalPermissions(Configuration conf)
throws IOException {
return getPermissions(conf, null, null, null, null, null, false);
}

/**
* Reads user permission assignments stored in the <code>l:</code> column family of the first
* table row in <code>_acl_</code>.
Expand Down
Loading

0 comments on commit 4da7e94

Please sign in to comment.