clearStatistics
public ClearStatisticsResponse clearStatistics(ClearStatisticsRequest request) throws GPUdbException Clears statistics (cardinality, mean value, etc.) for a column in a specified table.Parameters:request-Requestobject containing the parameters for the operation.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.clearStatistics
public ClearStatisticsResponse clearStatistics(String tableName, String columnName, Map<String, String> options) throws GPUdbException Clears statistics (cardinality, mean value, etc.) for a column in a specified table.Parameters:tableName- Name 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,columnNamemust be empty. The default value is ”.columnName- Name of the column intableNamefor 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 whentableNameis ’*’. The default value is ”.options- Optional parameters. The default value is an emptyMap.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.