This is an automated email from the ASF dual-hosted git repository.
gxcheng pushed a commit to branch branch-1.4
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-1.4 by this push:
new ea06309 HBASE-23273 Fix table header display is incorrect on
table.jsp when viewing hbase:meta
ea06309 is described below
commit ea063092bffa5f11b3b76fe2ce4354b1fd923fa8
Author: Guangxu Cheng <[email protected]>
AuthorDate: Sun Nov 10 20:37:48 2019 +0800
HBASE-23273 Fix table header display is incorrect on table.jsp when viewing
hbase:meta
Signed-off-by: Guangxu Cheng <[email protected]>
---
hbase-server/src/main/resources/hbase-webapps/master/table.jsp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
index 93fd3a8..b45d633 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
@@ -159,10 +159,10 @@
if ( fqtn != null ) {
table = new HTable(conf, fqtn);
if (table.getTableDescriptor().getRegionReplication() > 1) {
- tableHeader = "<h2>Table Regions</h2><table id=\"tableRegionTable\"
class=\"tablesorter table table-striped\" style=\"table-layout: fixed;
word-wrap: break-word;\"><thead><tr>Name</th><th>Region Server</th>Start
Key</th>End
Key</th><th>Locality</th><th>Requests</th><th>ReplicaID</th></tr></thead>";
+ tableHeader = "<h2>Table Regions</h2><table id=\"tableRegionTable\"
class=\"tablesorter table table-striped\" style=\"table-layout: fixed;
word-wrap: break-word;\"><thead><tr><th>Name</th><th>Region
Server</th><th>ReadRequests</th><th>WriteRequests</th><th>StorefileSize</th><th>Num.Storefiles</th><th>MemSize</th><th>Locality</th><th>Start
Key</th><th>End Key</th><th>ReplicaID</th></tr></thead>";
withReplica = true;
} else {
- tableHeader = "<h2>Table Regions</h2><table id=\"tableRegionTable\"
class=\"tablesorter table table-striped\" style=\"table-layout: fixed;
word-wrap: break-word;\"><thead><tr>Name</th><th>Region Server</th>Start
Key</th>End Key</th><th>Locality</th><th>Requests</th></tr></thead>";
+ tableHeader = "<h2>Table Regions</h2><table id=\"tableRegionTable\"
class=\"tablesorter table table-striped\" style=\"table-layout: fixed;
word-wrap: break-word;\"><thead><tr><th>Name</th><th>Region
Server</th><th>ReadRequests</th><th>WriteRequests</th><th>StorefileSize</th><th>Num.Storefiles</th><th>MemSize</th><th>Locality</th><th>Start
Key</th><th>End Key</th></tr></thead>";
}
if ( !readOnly && action != null ) {
%>