Package com.gpudb.protocol
Class ShowTableRequest.Options
- java.lang.Object
-
- com.gpudb.protocol.ShowTableRequest.Options
-
- Enclosing class:
- ShowTableRequest
public static final class ShowTableRequest.Options extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEPENDENCIESInclude view dependencies in the output.static StringFALSEstatic StringFORCE_SYNCHRONOUSIfTRUEthen the table sizes will wait for read lock before returning.static StringGET_ACCESS_DATAIfTRUEthen data about the last read, write, alter and create will be returned.static StringGET_CACHED_SIZESIfTRUEthen the number of records in each table, along with a cumulative count, will be returned; blank, otherwise.static StringGET_COLUMN_INFOIfTRUEthen column info (memory usage, etc) will be returned.static StringGET_SIZESIfTRUEthen the number of records in each table, along with a cumulative count, will be returned; blank, otherwise.static StringNO_ERROR_IF_NOT_EXISTSstatic StringREFERENCING_MATERIALIZED_VIEWSInclude view dependents in the output.static StringSHOW_CHILDRENstatic StringSKIP_ADDITIONAL_INFOIfTRUEthen the response will not populate the additional_info field.static StringSKIP_TEMP_SCHEMASIfTRUEthen the table list will not include tables from SYS_TEMP and other system temporary schemas.static StringTRUE
-
-
-
Field Detail
-
DEPENDENCIES
public static final String DEPENDENCIES
- 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
-
FORCE_SYNCHRONOUS
public static final String FORCE_SYNCHRONOUS
IfTRUEthen the table sizes will wait for read lock before returning. Supported values: The default value isTRUE.- See Also:
- Constant Field Values
-
GET_ACCESS_DATA
public static final String GET_ACCESS_DATA
IfTRUEthen data about the last read, write, alter and create will be returned. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
GET_CACHED_SIZES
public static final String GET_CACHED_SIZES
IfTRUEthen the number of records in each table, along with a cumulative count, will be returned; blank, otherwise. This version will return the sizes cached at rank 0, which may be stale if there is a multihead insert occurring. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
GET_SIZES
public static final String GET_SIZES
IfTRUEthen the number of records in each table, along with a cumulative count, will be returned; blank, otherwise. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
REFERENCING_MATERIALIZED_VIEWS
public static final String REFERENCING_MATERIALIZED_VIEWS
- See Also:
- Constant Field Values
-
SKIP_ADDITIONAL_INFO
public static final String SKIP_ADDITIONAL_INFO
IfTRUEthen the response will not populate the additional_info field. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
NO_ERROR_IF_NOT_EXISTS
public static final String NO_ERROR_IF_NOT_EXISTS
IfFALSEwill return an error if the providedtableNamedoes not exist. IfTRUEthen it will return an empty result. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
SKIP_TEMP_SCHEMAS
public static final String SKIP_TEMP_SCHEMAS
IfTRUEthen the table list will not include tables from SYS_TEMP and other system temporary schemas. This is the default behavior for non-admin users. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
SHOW_CHILDREN
public static final String SHOW_CHILDREN
IftableNameis a schema, thenTRUEwill return information about the tables and views in the schema, andFALSEwill return information about the schema itself. IftableNameis a table or view,SHOW_CHILDRENmust beFALSE. IftableNameis empty, thenSHOW_CHILDRENmust beTRUE. Supported values: The default value isTRUE.- See Also:
- Constant Field Values
-
-