public class ShowTableRequest extends Object implements org.apache.avro.generic.IndexedRecord
GPUdb.showTable(ShowTableRequest)
.
Retrieves detailed information about a table, view, or schema,
specified in tableName
. If the supplied tableName
is a
schema the call can return information about either the schema itself or the
tables and views it contains. If tableName
is empty, information
about
all schemas will be returned.
If the option get_sizes
is set to
true
, then the number of records
in each table is returned (in sizes
and
fullSizes
), along with the total number of objects across all
requested tables (in totalSize
and totalFullSize
).
For a schema, setting the show_children
option to
false
returns only information
about the schema itself; setting show_children
to
true
returns a list of tables and
views contained in the schema, along with their corresponding detail.
To retrieve a list of every table, view, and schema in the database, set
tableName
to '*' and show_children
to
true
. When doing this, the
returned totalSize
and totalFullSize
will not include the
sizes of
non-base tables (e.g., filters, views, joins, etc.).
Modifier and Type | Class and Description |
---|---|
static class |
ShowTableRequest.Options
Optional parameters.
|
Constructor and Description |
---|
ShowTableRequest()
Constructs a ShowTableRequest object with default parameters.
|
ShowTableRequest(String tableName,
Map<String,String> options)
Constructs a ShowTableRequest object with the specified parameters.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
Object |
get(int index)
This method supports the Avro framework and is not intended to be called
directly by the user.
|
static org.apache.avro.Schema |
getClassSchema()
This method supports the Avro framework and is not intended to be called
directly by the user.
|
Map<String,String> |
getOptions() |
org.apache.avro.Schema |
getSchema()
This method supports the Avro framework and is not intended to be called
directly by the user.
|
String |
getTableName() |
int |
hashCode() |
void |
put(int index,
Object value)
This method supports the Avro framework and is not intended to be called
directly by the user.
|
ShowTableRequest |
setOptions(Map<String,String> options) |
ShowTableRequest |
setTableName(String tableName) |
String |
toString() |
public ShowTableRequest()
public ShowTableRequest(String tableName, Map<String,String> options)
tableName
- Name of the table for which to retrieve the
information, in [schema_name.]table_name format, using
standard name resolution rules. If blank,
then returns information about all tables and views.options
- Optional parameters.
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
.
GET_CACHED_SIZES
: If 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
.
SHOW_CHILDREN
: If 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
.
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
.public static org.apache.avro.Schema getClassSchema()
public String getTableName()
public ShowTableRequest setTableName(String tableName)
tableName
- Name of the table for which to retrieve the
information, in [schema_name.]table_name format, using
standard name resolution rules. If blank,
then returns information about all tables and views.this
to mimic the builder pattern.public Map<String,String> getOptions()
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
.
GET_CACHED_SIZES
: If 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
.
SHOW_CHILDREN
: If 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
.
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
.public ShowTableRequest setOptions(Map<String,String> options)
options
- Optional parameters.
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
.
GET_CACHED_SIZES
: If 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
.
SHOW_CHILDREN
: If 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
.
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
.this
to mimic the builder pattern.public org.apache.avro.Schema getSchema()
getSchema
in interface org.apache.avro.generic.GenericContainer
public Object get(int index)
get
in interface org.apache.avro.generic.IndexedRecord
index
- the position of the field to getIndexOutOfBoundsException
public void put(int index, Object value)
put
in interface org.apache.avro.generic.IndexedRecord
index
- the position of the field to setvalue
- the value to setIndexOutOfBoundsException
Copyright © 2024. All rights reserved.