Skip to main content

◆ clearStatistics() [1/2]

ClearStatisticsResponse kinetica.Kinetica.clearStatistics (ClearStatisticsRequestrequest_)
inline

Clears statistics (cardinality, mean value, etc.) for a column in a specified table.

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

Definition at line 16147 of file KineticaFunctions.cs.

◆ clearStatistics() [2/2]

ClearStatisticsResponse kinetica.Kinetica.clearStatistics (stringtable_name = "",
stringcolumn_name = "",
IDictionary< string, string >options = null )
inline

Clears statistics (cardinality, mean value, etc.) for a column in a specified table.

Parameters
table_nameName of a table, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table. A value of ’*’ clears statistics on every user table the caller may read (excluding system schemas, views, and temporary tables); when used, column_name must be empty. The default value is ”.
column_nameName of the column in table_name for which to clear statistics. The column must be from an existing table. An empty string clears statistics for all columns in the table. Must be empty when table_name is ’*’. The default value is ”.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 16191 of file KineticaFunctions.cs.

◆ ClearStatisticsAsync() [1/2]

async System.Threading.Tasks.Task< ClearStatisticsResponse > kinetica.Kinetica.ClearStatisticsAsync (ClearStatisticsRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Clears statistics (cardinality, mean value, etc.) for a column in a specified 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 16163 of file KineticaFunctions.cs.

◆ ClearStatisticsAsync() [2/2]

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

Clears statistics (cardinality, mean value, etc.) for a column in a specified table.

(async)

Parameters
table_nameName of a table, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table. A value of ’*’ clears statistics on every user table the caller may read (excluding system schemas, views, and temporary tables); when used, column_name must be empty. The default value is ”.
column_nameName of the column in table_name for which to clear statistics. The column must be from an existing table. An empty string clears statistics for all columns in the table. Must be empty when table_name is ’*’. The default value is ”.
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 16221 of file KineticaFunctions.cs.