influxdb/storage/reads/array_cursor.gen.go.tmpldata

94 lines
1.5 KiB
Plaintext
Raw Normal View History

[
{
"Name":"Float",
"name":"float",
"Type":"float64",
"Aggs": [
{
"Name":"Count",
"AccType":"int64",
"AccTypeName":"Integer",
"AccInit":"0",
"Accumulate":"acc++"
},
{
"Name":"Sum",
"AccType":"float64",
"AccTypeName":"Float",
"AccInit":"0",
"Accumulate":"acc += a.Values[rowIdx]"
}
]
},
{
"Name":"Integer",
"name":"integer",
"Type":"int64",
"Aggs": [
{
"Name":"Count",
"AccType":"int64",
"AccTypeName":"Integer",
"AccInit":"0",
"Accumulate":"acc++"
},
{
"Name":"Sum",
"AccType":"int64",
"AccTypeName":"Integer",
"AccInit":"0",
"Accumulate":"acc += a.Values[rowIdx]"
}
]
},
{
"Name":"Unsigned",
"name":"unsigned",
"Type":"uint64",
"Aggs": [
{
"Name":"Count",
"AccType":"int64",
"AccTypeName":"Integer",
"AccInit":"0",
"Accumulate":"acc++"
},
{
"Name":"Sum",
"AccType":"uint64",
"AccTypeName":"Unsigned",
"AccInit":"0",
"Accumulate":"acc += a.Values[rowIdx]"
}
]
},
{
"Name":"String",
"name":"string",
"Type":"string",
"Aggs": [
{
"Name":"Count",
"AccType":"int64",
"AccTypeName":"Integer",
"AccInit":"0",
"Accumulate":"acc++"
}
]
},
{
"Name":"Boolean",
"name":"boolean",
"Type":"bool",
"Aggs": [
{
"Name":"Count",
"AccType":"int64",
"AccTypeName":"Integer",
"AccInit":"0",
"Accumulate":"acc++"
}
]
}
]