List mapping tables
Tablestore SDK for Python lists the names of mapping tables in the current instance.
Prerequisites
Install Tablestore SDK for Python and initialize a client.
SQL query requires version 5.4.2 or later. We recommend that you use the latest version.
Description
Call the exe_sql_query method to execute a SHOW TABLES statement and list mapping tables in the current instance.
def exe_sql_query(self, query)
query = "SHOW TABLES"
row_list, _, _ = client.exe_sql_query(query)
for row in row_list:
print(row.attribute_columns[0][1])
Parameters
The exe_sql_query method contains the following parameter.
|
Name |
Type |
Description |
|
query (required) |
String |
The |
Response
The exe_sql_query method returns a tuple that contains the following elements.
|
Element |
Type |
Description |
|
|
List[Row] |
A list of mapping table names. The result column is named |
|
|
List[Tuple] |
Read and write CUs consumed by data tables. Each tuple contains a table name and a |
|
|
List[Tuple] |
Read and write CUs consumed by search indexes. Each tuple contains a search index name and a |