7 using System.Collections.Generic;
16 public class AggregateMinMaxRequest : KineticaData
33 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
53 IDictionary<string, string>
options =
null)
64 public class AggregateMinMaxResponse : KineticaData
85 public double min {
get;
set; }
90 public double max {
get;
set; }
108 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
double min
Minimum value of the column_name.
double max
Maximum value of the column_name.
string column_name
Name of a column or an expression of one or more column on which the min-max will be calculated.
AggregateMinMaxRequest()
Constructs an AggregateMinMaxRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
const string MIN_STRING
The minimum value of column_name when it is a char type
IDictionary< string, string > info
Additional information.
A set of string constants for the parameter info.
string table_name
Name of the table on which the operation will be performed.
const string MAX_STRING
The maximum value of column_name when it is a char type
AggregateMinMaxRequest(string table_name, string column_name, IDictionary< string, string > options=null)
Constructs an AggregateMinMaxRequest object with the specified parameters.