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 Jul 25, 2019
1 parent a65e72d commit 5c8a26f
Show file tree
Hide file tree
Showing 4 changed files with 523 additions and 246 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 5c8a26f

Please sign in to comment.