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]>
(cherry picked from commit 157200e)
  • Loading branch information
AkshayTSudheer authored and PDavid committed Dec 18, 2024
1 parent 3a16579 commit 57df7d0
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 @@ -299,7 +299,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 @@ -1316,7 +1316,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 @@ -1325,7 +1327,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 57df7d0

Please sign in to comment.