Kinetica   C#   API  Version 7.2.3.1
AggregateMinMax.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 namespace kinetica;
10 
17 {
24  public string table_name { get; set; }
25 
28  public string column_name { get; set; }
29 
33  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
34 
38 
52  string column_name,
53  IDictionary<string, string> options = null)
54  {
55  this.table_name = table_name ?? "";
56  this.column_name = column_name ?? "";
57  this.options = options ?? new Dictionary<string, string>();
58  } // end constructor
59 } // end class AggregateMinMaxRequest
60 
65 {
69  public struct Info
70  {
74  public const string MIN_STRING = "min_string";
75 
79  public const string MAX_STRING = "max_string";
80  } // end struct Info
81 
84  public double min { get; set; }
85 
88  public double max { get; set; }
89 
106  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
107 } // end class AggregateMinMaxResponse
string table_name
Name of the table on which the operation will be performed.
AggregateMinMaxRequest()
Constructs an AggregateMinMaxRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.aggregateMinMax.
const string MAX_STRING
The maximum value of column_name, stored as a byte vector.
const string MIN_STRING
The minimum value of column_name, stored as a byte vector.
A set of results returned by Kinetica.aggregateMinMax.
AggregateMinMaxRequest(string table_name, string column_name, IDictionary< string, string > options=null)
Constructs an AggregateMinMaxRequest object with the specified parameters.
double min
Minimum value of the column_name.
double max
Maximum value of the column_name.
A set of string constants for the parameter info.
string column_name
Name of a column or an expression of one or more column on which the min-max will be calculated.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
Optional parameters.