mirror of https://github.com/pikami/cosmium.git
33 lines
930 B
Go
33 lines
930 B
Go
package constants
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
var QueryPlanResponse = gin.H{
|
|
"partitionedQueryExecutionInfoVersion": 2,
|
|
"queryInfo": map[string]interface{}{
|
|
"distinctType": "None",
|
|
"top": nil,
|
|
"offset": nil,
|
|
"limit": nil,
|
|
"orderBy": []interface{}{},
|
|
"orderByExpressions": []interface{}{},
|
|
"groupByExpressions": []interface{}{},
|
|
"groupByAliases": []interface{}{},
|
|
"aggregates": []interface{}{},
|
|
"groupByAliasToAggregateType": map[string]interface{}{},
|
|
"rewrittenQuery": "",
|
|
"hasSelectValue": false,
|
|
"dCountInfo": nil,
|
|
},
|
|
"queryRanges": []interface{}{
|
|
map[string]interface{}{
|
|
"min": "",
|
|
"max": "FF",
|
|
"isMinInclusive": true,
|
|
"isMaxInclusive": false,
|
|
},
|
|
},
|
|
}
|