mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix: Sort keyNames
This commit is contained in:
parent
912b5b7cef
commit
4167a2e54b
1 changed files with 1 additions and 1 deletions
|
|
@ -458,7 +458,7 @@ export function getCube(rows, keyColumns, groupColumns, aggrColumns) {
|
|||
cube: cube,
|
||||
schema: schema,
|
||||
keyColumnName: keyColumnName,
|
||||
keyNames: Object.keys(cube), /** keys should be sorted */
|
||||
keyNames: Object.keys(cube).sort(), /** keys should be sorted */
|
||||
groupNameSet: groupNameSet,
|
||||
selectorNameWithIndex: selectorNameWithIndex,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue