public static final class ShowTableRequest.Options extends Object
FORCE_SYNCHRONOUS
: If true
then the table sizes will wait for
read lock before returning.
Supported values:
The default value is TRUE
.
GET_SIZES
: If
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
.
SHOW_CHILDREN
: If tableName
is a collection, then true
will return information about the children of the collection, and false
will return information about the collection 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
.
NO_ERROR_IF_NOT_EXISTS
: If 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
.
GET_COLUMN_INFO
: If true
then column info (memory usage, etc)
will be returned.
Supported values:
The default value is FALSE
.
Map
.
A set of string constants for the parameter options
.Modifier and Type | Field and Description |
---|---|
static String |
FALSE |
static String |
FORCE_SYNCHRONOUS
If
true then the table sizes will wait for read lock before
returning. |
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
If
false will return an error if the provided tableName does not exist. |
static String |
SHOW_CHILDREN
If
tableName is a collection, then true will return
information about the children of the collection, and false
will return information about the collection itself. |
static String |
TRUE |
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 TRUE
public static final String 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 SHOW_CHILDREN
tableName
is a collection, then true
will return
information about the children of the collection, and false
will return information about the collection 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
.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 GET_COLUMN_INFO
true
then column info (memory usage, etc) will be
returned.
Supported values:
The default value is FALSE
.Copyright © 2020. All rights reserved.