Skip to content

Commit

Permalink
HBASE-25402 Sorting order by start key or end key is not considering …
Browse files Browse the repository at this point in the history
…empty start key/end key (apache#2955)

Signed-off-by: Duo Zhang <[email protected]>
Signed-off-by: Pankaj Kumar<[email protected]>
  • Loading branch information
AkshayTSudheer authored Mar 3, 2021
1 parent a97a40c commit 157200e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,12 @@ $(document).ready(function()
type: "numeric"
});

$("#baseStatsTable").tablesorter();
$("#baseStatsTable").tablesorter({
headers: {
1: {empty: 'emptyMin'},
2: {empty: 'emptyMax'}
}
});
$("#requestStatsTable").tablesorter({
headers: {
1: {sorter: 'separator'},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1240,7 +1240,9 @@ $(document).ready(function()
3: {sorter: 'separator'},
4: {sorter: 'filesize'},
5: {sorter: 'separator'},
6: {sorter: 'filesize'}
6: {sorter: 'filesize'},
7: {empty: 'emptyMin'},
8: {empty: 'emptyMax'}
}
});
$("#metaTableBaseStatsTable").tablesorter({
Expand All @@ -1249,7 +1251,9 @@ $(document).ready(function()
3: {sorter: 'separator'},
4: {sorter: 'filesize'},
5: {sorter: 'separator'},
6: {sorter: 'filesize'}
6: {sorter: 'filesize'},
7: {empty: 'emptyMin'},
8: {empty: 'emptyMax'}
}
});
$("#tableLocalityStatsTable").tablesorter({
Expand Down

0 comments on commit 157200e

Please sign in to comment.