HBASE-22384 Fixed formatting issues in administration section of book

This commit is contained in:
Jan Hentschel 2019-05-08 16:36:19 +02:00
parent e0f8f9b886
commit 9f1eac2268
No known key found for this signature in database
GPG Key ID: 5CD818B19CC299A3
1 changed files with 8 additions and 8 deletions

View File

@ -1283,15 +1283,15 @@ public static void addLabels() throws Exception {
----
hbase> set_auths 'service', [ 'service' ]
----
+
----
hbase> set_auths 'testuser', [ 'test' ]
----
+
----
hbase> set_auths 'qa', [ 'test', 'developer' ]
----
+
----
hbase> set_auths '@qagroup', [ 'test' ]
----
@ -1321,15 +1321,15 @@ public void testSetAndGetUserAuths() throws Throwable {
----
hbase> clear_auths 'service', [ 'service' ]
----
+
----
hbase> clear_auths 'testuser', [ 'test' ]
----
+
----
hbase> clear_auths 'qa', [ 'test', 'developer' ]
----
+
----
hbase> clear_auths '@qagroup', [ 'test', 'developer' ]
----
@ -1359,11 +1359,11 @@ The label is associated with a given version of the cell.
----
hbase> set_visibility 'user', 'admin|service|developer', { COLUMNS => 'i' }
----
+
----
hbase> set_visibility 'user', 'admin|service', { COLUMNS => 'pii' }
----
+
----
hbase> set_visibility 'user', 'test', { COLUMNS => [ 'i', 'pii' ], FILTER => "(PrefixFilter ('test'))" }
----