Package com.gpudb.protocol
Class GetRecordsRequest.Options
- java.lang.Object
-
- com.gpudb.protocol.GetRecordsRequest.Options
-
- Enclosing class:
- GetRecordsRequest
public static final class GetRecordsRequest.Options extends Object
A set of string constants for theGetRecordsRequestparameteroptions.
-
-
Field Summary
Fields Modifier and Type Field Description static StringASCENDINGstatic StringDESCENDINGstatic StringEXPRESSIONOptional filter expression to apply to the table.static StringFALSEstatic StringFAST_INDEX_LOOKUPIndicates if indexes should be used to perform the lookup for a given expression if possible.static StringSORT_BYOptional column that the data should be sorted by.static StringSORT_ORDERString indicating how the returned values should be sorted - ascending or descending.static StringTRUE
-
-
-
Field Detail
-
EXPRESSION
public static final String EXPRESSION
Optional filter expression to apply to the table.- See Also:
- Constant Field Values
-
FAST_INDEX_LOOKUP
public static final String FAST_INDEX_LOOKUP
Indicates if indexes should be used to perform the lookup for a given expression if possible. Only applicable if there is no sorting, the expression contains only equivalence comparisons based on existing tables indexes and the range of requested values is from [0 to END_OF_SET]. Supported values: The default value isTRUE.- See Also:
- Constant Field Values
-
TRUE
public static final String TRUE
- See Also:
- Constant Field Values
-
FALSE
public static final String FALSE
- See Also:
- Constant Field Values
-
SORT_BY
public static final String SORT_BY
Optional column that the data should be sorted by. Empty by default (i.e. no sorting is applied).- See Also:
- Constant Field Values
-
SORT_ORDER
public static final String SORT_ORDER
String indicating how the returned values should be sorted - ascending or descending. If sort_order is provided, sort_by has to be provided. Supported values: The default value isASCENDING.- See Also:
- Constant Field Values
-
ASCENDING
public static final String ASCENDING
- See Also:
- Constant Field Values
-
DESCENDING
public static final String DESCENDING
- See Also:
- Constant Field Values
-
-