public class ShowTableRequest extends Object implements org.apache.avro.generic.IndexedRecord
GPUdb.showTable(ShowTableRequest)
.
Retrieves detailed information about a table, view, or collection, specified
in tableName
. If the supplied tableName
is a collection, the
call can return information about either the collection itself or the tables
and views it contains. If tableName
is empty, information about all
collections and top-level tables and views can 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 collection, setting the show_children
option to false
returns only information about the collection itself; setting show_children
to true
returns a list of tables and views contained
in the collection, along with their corresponding detail.
To retrieve a list of every table, view, and collection in the database, set
tableName
to '*' and show_children
to true
.
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. If blank, then information about all
collections and top-level tables and views is
returned.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
.
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
.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. If blank, then information about all
collections and top-level tables and views is
returned.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
.
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
.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
.
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
.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 © 2020. All rights reserved.