-
Notifications
You must be signed in to change notification settings - Fork 114
Open
Description
explain select sum(money) as allMoney from person where id=3
result is
{
"size" : 0,
"timeout" : 10000,
"query" : {
"term" : {
"id" : 3
}
},
"aggregations" : {
"filter" : {
"filter" : {
"term" : {
"id" : 3
}
},
"aggregations" : {
"sum(Money)" : {
"sum" : {
"field" : "Money"
}
}
}
}
}
}
the 'money' become 'Money'
I suggest you modify the 251 1ine on Heading.java or SelectParser.java about 'createColumn'
Metadata
Metadata
Assignees
Labels
No labels