Package com.gpudb.protocol
Class FilterByTableRequest.Options
- java.lang.Object
-
- com.gpudb.protocol.FilterByTableRequest.Options
-
- Enclosing class:
- FilterByTableRequest
public static final class FilterByTableRequest.Options extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringBUFFERBuffer size, in meters.static StringBUFFER_METHODMethod used to buffer polygons.static StringCOLLECTION_NAME[DEPRECATED--please specify the containing schema for the view as part ofviewNameand useGPUdb.createSchemato create the schema if non-existent] Name of a schema for the newly created view.static StringCREATE_TEMP_TABLEstatic StringFALSEstatic StringFILTER_MODEString indicating the filter mode, eitherIN_TABLEorNOT_IN_TABLE.static StringGEOSUse geos 1 edge per corner algorithmstatic StringIN_TABLEstatic StringMAX_PARTITION_SCOREMaximum number of points * edges in a partition.static StringMAX_PARTITION_SIZEMaximum number of points in a partition.static StringMODEstatic StringNORMALstatic StringNOT_IN_TABLEstatic StringSPATIALstatic StringTRUEstatic StringX_COLUMN_NAMEName of column containing x value of point being filtered inSPATIALmode.static StringY_COLUMN_NAMEName of column containing y value of point being filtered inSPATIALmode.
-
-
-
Field Detail
-
CREATE_TEMP_TABLE
public static final String CREATE_TEMP_TABLE
IfTRUE, a unique temporary table name will be generated in the sys_temp schema and used in place ofviewName. This is always allowed even if the caller does not have permission to create tables. The generated name is returned inQUALIFIED_VIEW_NAME. 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
-
COLLECTION_NAME
public static final String COLLECTION_NAME
[DEPRECATED--please specify the containing schema for the view as part ofviewNameand useGPUdb.createSchemato create the schema if non-existent] Name of a schema for the newly created view. If the schema is non-existent, it will be automatically created.- See Also:
- Constant Field Values
-
FILTER_MODE
public static final String FILTER_MODE
String indicating the filter mode, eitherIN_TABLEorNOT_IN_TABLE. Supported values: The default value isIN_TABLE.- See Also:
- Constant Field Values
-
IN_TABLE
public static final String IN_TABLE
- See Also:
- Constant Field Values
-
NOT_IN_TABLE
public static final String NOT_IN_TABLE
- See Also:
- Constant Field Values
-
MODE
public static final String MODE
- See Also:
- Constant Field Values
-
NORMAL
public static final String NORMAL
- See Also:
- Constant Field Values
-
SPATIAL
public static final String SPATIAL
- See Also:
- Constant Field Values
-
BUFFER
public static final String BUFFER
Buffer size, in meters. Only relevant forSPATIALmode. The default value is '0'.- See Also:
- Constant Field Values
-
BUFFER_METHOD
public static final String BUFFER_METHOD
Method used to buffer polygons. Only relevant forSPATIALmode. Supported values: The default value isNORMAL.- See Also:
- Constant Field Values
-
GEOS
public static final String GEOS
Use geos 1 edge per corner algorithm- See Also:
- Constant Field Values
-
MAX_PARTITION_SIZE
public static final String MAX_PARTITION_SIZE
Maximum number of points in a partition. Only relevant forSPATIALmode. The default value is '0'.- See Also:
- Constant Field Values
-
MAX_PARTITION_SCORE
public static final String MAX_PARTITION_SCORE
Maximum number of points * edges in a partition. Only relevant forSPATIALmode. The default value is '8000000'.- See Also:
- Constant Field Values
-
X_COLUMN_NAME
public static final String X_COLUMN_NAME
Name of column containing x value of point being filtered inSPATIALmode. The default value is 'x'.- See Also:
- Constant Field Values
-
Y_COLUMN_NAME
public static final String Y_COLUMN_NAME
Name of column containing y value of point being filtered inSPATIALmode. The default value is 'y'.- See Also:
- Constant Field Values
-
-