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 sizes
(objects and elements) of each table are returned (in sizes and
fullSizes), along with the total number of objects in the requested
table (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 description, type id, schema, type
label, type properties, and additional information including TTL.
| 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.
GET_SIZES: If true then the table sizes 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.
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()
GET_SIZES: If true then the table sizes 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.
public ShowTableRequest setOptions(Map<String,String> options)
options - Optional parameters.
GET_SIZES: If true then the table sizes 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.
this to mimic the builder pattern.public org.apache.avro.Schema getSchema()
getSchema in interface org.apache.avro.generic.GenericContainerpublic Object get(int index)
get in interface org.apache.avro.generic.IndexedRecordindex - the position of the field to getIndexOutOfBoundsExceptionpublic void put(int index,
Object value)
put in interface org.apache.avro.generic.IndexedRecordindex - the position of the field to setvalue - the value to setIndexOutOfBoundsExceptionCopyright © 2017. All rights reserved.