-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] pivot: sorting of undefined headers
Steps to reproduce: * Create a pivot table with headers value "Alice", "Olaf", "". => The headers are sorted in the following order: "Alice", "(Undefined)", "Olaf". The root cause was that the sorting function sorts the keys of the groupby, and the key of the undefined object is the string "null" and so it was sorted between the A of Alice and the O of Olaf. closes #4898 Task: 4123261 X-original-commit: fc7eb95 Signed-off-by: Rémi Rahir (rar) <[email protected]>
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters