R/generated_client.R
databases_list_tables_search.Rd
List tables in the specified database, deprecated use "GET /tables" instead
databases_list_tables_search(id, name = NULL, column_name = NULL)
id | integer required. The ID of the database. |
---|---|
name | string optional. If specified, will be used to filter the tables returned. Substring matching is supported (e.g., "name=table" will return both "table1" and "my table"). |
column_name | string optional. Search for tables containing a column with the given name. |
An array containing the following fields:
integer, The ID of the table.
integer, The ID of the database.
string, The name of the schema containing the table.
string, Name of the table.
string, The description of the table, as specified by the table owner
boolean, True if this table represents a view. False if it represents a regular table.
integer, The number of rows in the table.
integer, The number of columns in the table.
number, The size of the table in megabytes.
string, The database username of the table's owner.
string, The column used as the Amazon Redshift distkey.
string, The column used as the Amazon Redshift sortkey.
string, How up-to-date the table's statistics on row counts, null counts, distinct counts, and values distributions are. One of: refreshing, stale, or current.
string, The time of the last statistics refresh.
string, The ID of the most recent statistics refresh.
list, A list containing the following elements:
id integer,
state string,
createdAt string, The time that the run was queued.
startedAt string, The time that the run started.
finishedAt string, The time that the run completed.
error string, The error message for this run, if present.
array, The names of each column in the table.