Uses of Class
com.gpudb.protocol.AggregateUniqueRequest
-
Packages that use AggregateUniqueRequest Package Description com.gpudb com.gpudb.protocol -
-
Uses of AggregateUniqueRequest in com.gpudb
Methods in com.gpudb with parameters of type AggregateUniqueRequest Modifier and Type Method Description AggregateUniqueResponseGPUdb. aggregateUnique(AggregateUniqueRequest request)Returns all the unique values from a particular column (specified bycolumnName) of a particular table or view (specified bytableName).RawAggregateUniqueResponseGPUdb. aggregateUniqueRaw(AggregateUniqueRequest request)Returns all the unique values from a particular column (specified bycolumnName) of a particular table or view (specified bytableName). -
Uses of AggregateUniqueRequest in com.gpudb.protocol
Methods in com.gpudb.protocol that return AggregateUniqueRequest Modifier and Type Method Description AggregateUniqueRequestAggregateUniqueRequest. setColumnName(String columnName)Name of the column or an expression containing one or more column names on which the unique function would be applied.AggregateUniqueRequestAggregateUniqueRequest. setEncoding(String encoding)Specifies the encoding for returned records.AggregateUniqueRequestAggregateUniqueRequest. setLimit(long limit)A positive integer indicating the maximum number of results to be returned, or END_OF_SET (-9999) to indicate that the maximum number of results allowed by the server should be returned.AggregateUniqueRequestAggregateUniqueRequest. setOffset(long offset)A positive integer indicating the number of initial results to skip (this can be useful for paging through the results).AggregateUniqueRequestAggregateUniqueRequest. setOptions(Map<String,String> options)Optional parameters.AggregateUniqueRequestAggregateUniqueRequest. setTableName(String tableName)Name of an existing table or view on which the operation will be performed, in [schema_name.]table_name format, using standard name resolution rules.
-