Package com.gpudb.protocol
Class GetRecordsByColumnRequest.Options
- java.lang.Object
-
- com.gpudb.protocol.GetRecordsByColumnRequest.Options
-
- Enclosing class:
- GetRecordsByColumnRequest
public static final class GetRecordsByColumnRequest.Options extends Object
A set of string constants for theGetRecordsByColumnRequestparameteroptions.
-
-
Field Summary
Fields Modifier and Type Field Description static StringASCENDINGstatic StringCONVERT_WKTS_TO_WKBSIfTRUE, then WKT string columns will be returned as WKB bytes.static StringDESCENDINGstatic StringEXPRESSIONOptional filter expression to apply to the table.static StringFALSEstatic StringORDER_BYComma-separated list of the columns to be sorted by as well as the sort direction, e.g., 'timestamp asc, x desc'.static StringROUTE_TO_TOMFor multihead record retrieval without shard key expression - specifies from which tom to retrieve data.static StringSORT_BYOptional column that the data should be sorted by.static StringSORT_ORDERString indicating how the returned values should be sorted -ASCENDINGorDESCENDING.static StringTRUE
-
-
-
Field Detail
-
EXPRESSION
public static final String EXPRESSION
Optional filter expression to apply to the table.- See Also:
- Constant Field Values
-
SORT_BY
public static final String SORT_BY
Optional column that the data should be sorted by. Used in conjunction withSORT_ORDER. TheORDER_BYoption can be used in lieu ofSORT_BY/SORT_ORDER. The default value is ''.- See Also:
- Constant Field Values
-
SORT_ORDER
public static final String SORT_ORDER
String indicating how the returned values should be sorted -ASCENDINGorDESCENDING. IfSORT_ORDERis provided,SORT_BYhas 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
-
ORDER_BY
public static final String ORDER_BY
Comma-separated list of the columns to be sorted by as well as the sort direction, e.g., 'timestamp asc, x desc'. The default value is ''.- See Also:
- Constant Field Values
-
CONVERT_WKTS_TO_WKBS
public static final String CONVERT_WKTS_TO_WKBS
IfTRUE, then WKT string columns will be returned as WKB bytes. Supported values: The default value isFALSE.- 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
-
ROUTE_TO_TOM
public static final String ROUTE_TO_TOM
For multihead record retrieval without shard key expression - specifies from which tom to retrieve data.- See Also:
- Constant Field Values
-
-