Repository: hbase Updated Branches: refs/heads/0.98 1c856e077 -> ea4025d5f refs/heads/branch-1 6a0c4f3ba -> 6b8a72519 refs/heads/master 3db5e2083 -> 13a1eaec0
HBASE-12618 Add 'Namespace' to headers while displaying user permissions (Ashish Singhi) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/13a1eaec Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/13a1eaec Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/13a1eaec Branch: refs/heads/master Commit: 13a1eaec09a467153adc1ee0b46df9f457da6115 Parents: 3db5e20 Author: Matteo Bertozzi <[email protected]> Authored: Wed Dec 3 08:26:37 2014 +0000 Committer: Matteo Bertozzi <[email protected]> Committed: Wed Dec 3 08:26:37 2014 +0000 ---------------------------------------------------------------------- hbase-shell/src/main/ruby/shell/commands/user_permission.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/13a1eaec/hbase-shell/src/main/ruby/shell/commands/user_permission.rb ---------------------------------------------------------------------- diff --git a/hbase-shell/src/main/ruby/shell/commands/user_permission.rb b/hbase-shell/src/main/ruby/shell/commands/user_permission.rb index 57d83be..5d8bf8a 100644 --- a/hbase-shell/src/main/ruby/shell/commands/user_permission.rb +++ b/hbase-shell/src/main/ruby/shell/commands/user_permission.rb @@ -37,7 +37,7 @@ EOF #format_simple_command do #admin.user_permission(table_regex) now = Time.now - formatter.header(["User", "Table,Family,Qualifier:Permission"]) + formatter.header(["User", "Namespace,Table,Family,Qualifier:Permission"]) count = security_admin.user_permission(table_regex) do |user, permission| formatter.row([ user, permission])
