public static final class ShowTableRequest.Options extends Object
Modifier and Type | Field and Description |
---|---|
static String |
DEPENDENCIES
Include view dependencies in the output.
|
static String |
FALSE |
static String |
FORCE_SYNCHRONOUS
If
TRUE then the table sizes will wait for read
lock before returning. |
static String |
GET_CACHED_SIZES
If
TRUE then the number of records in each
table, along with a cumulative count, will be returned; blank,
otherwise. |
static String |
GET_COLUMN_INFO
If
TRUE then column info (memory usage, etc)
will be returned. |
static String |
GET_SIZES
If
TRUE then the number of records in each
table, along with a cumulative count, will be returned; blank,
otherwise. |
static String |
NO_ERROR_IF_NOT_EXISTS
|
static String |
SHOW_CHILDREN
|
static String |
TRUE |
public static final String DEPENDENCIES
public static final String TRUE
public static final String FALSE
public static final String FORCE_SYNCHRONOUS
TRUE
then the table sizes will wait for read
lock before returning.
Supported values:
The default value is TRUE
.public static final String GET_CACHED_SIZES
TRUE
then 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 occuring.
Supported values:
The default value is FALSE
.public static final String GET_SIZES
TRUE
then the number of records in each
table, along with a cumulative count, will be returned; blank,
otherwise.
Supported values:
The default value is FALSE
.public static final String NO_ERROR_IF_NOT_EXISTS
FALSE
will return an error if the provided
tableName
does not exist. If TRUE
then it will return an empty result.
Supported values:
The default value is FALSE
.public static final String SHOW_CHILDREN
tableName
is a schema, then TRUE
will return information about the tables and
views in the schema, and FALSE
will return
information about the schema itself. If tableName
is a table or view, SHOW_CHILDREN
must be FALSE
. If tableName
is empty, then SHOW_CHILDREN
must be TRUE
.
Supported values:
The default value is TRUE
.Copyright © 2025. All rights reserved.