All Products
Search
Document Center

Tablestore:GroupByRangeResultItem

Last Updated:May 10, 2024

GroupByRangeResultItem specifies the information about a group returned from the GroupByRange aggregation operation.

Data structure

message GroupByRangeResultItem {
    optional double from = 1;
    optional double to = 2;
    optional int64 row_count = 3;
    optional AggregationsResult sub_aggs_result = 4;
    optional GroupBysResult sub_group_bys_result = 5;
}

Parameter

Type

Required

Description

from

double

Yes

The start value of the range.

to

double

Yes

The end value of the range.

row_count

int64

Yes

The total number of rows.

sub_aggs_result

AggregationsResult

No

The returned results of the sub-aggregation operation.

sub_group_bys_result

GroupBysResult

No

The returned results of the sub-GroupBy operation.