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/ea4025d5 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/ea4025d5 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/ea4025d5 Branch: refs/heads/0.98 Commit: ea4025d5f8ea394bd5a853158afecd8fc0c462b6 Parents: 1c856e0 Author: Matteo Bertozzi <[email protected]> Authored: Wed Dec 3 08:26:37 2014 +0000 Committer: Matteo Bertozzi <[email protected]> Committed: Wed Dec 3 08:28:40 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/ea4025d5/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])
