Skip to main content

◆ aggregateMinMax() [1/2]

AggregateMinMaxResponse kinetica.Kinetica.aggregateMinMax (AggregateMinMaxRequestrequest_)
inline

Calculates and returns the minimum and maximum values of a particular column in a table.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 5706 of file KineticaFunctions.cs.

◆ aggregateMinMax() [2/2]

AggregateMinMaxResponse kinetica.Kinetica.aggregateMinMax (stringtable_name,
stringcolumn_name,
IDictionary< string, string >options = null )
inline

Calculates and returns the minimum and maximum values of a particular column in a table.

Parameters
table_nameName of the table on which the operation will be performed. Must be an existing table, in [schema_name.]table_name format, using standard name resolution rules.
column_nameName of a column or an expression of one or more column on which the min-max will be calculated.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 5744 of file KineticaFunctions.cs.

◆ AggregateMinMaxAsync() [1/2]

async System.Threading.Tasks.Task< AggregateMinMaxResponse > kinetica.Kinetica.AggregateMinMaxAsync (AggregateMinMaxRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Calculates and returns the minimum and maximum values of a particular column in a table.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 5722 of file KineticaFunctions.cs.

◆ AggregateMinMaxAsync() [2/2]

async System.Threading.Tasks.Task< AggregateMinMaxResponse > kinetica.Kinetica.AggregateMinMaxAsync (stringtable_name,
stringcolumn_name,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Calculates and returns the minimum and maximum values of a particular column in a table.

(async)

Parameters
table_nameName of the table on which the operation will be performed. Must be an existing table, in [schema_name.]table_name format, using standard name resolution rules.
column_nameName of a column or an expression of one or more column on which the min-max will be calculated.
optionsOptional parameters. The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 5768 of file KineticaFunctions.cs.