@@ -107,7 +107,7 @@ def execute_command(
107
107
enforce_embedded_schema_correctness: Whether to enforce schema correctness
108
108
109
109
Returns:
110
- If async_op is False, returns an ExecuteResponse object containing the
110
+ If async_op is False, returns a ResultSet object containing the
111
111
query results and metadata. If async_op is True, returns None and the
112
112
results must be fetched later using get_execution_result().
113
113
@@ -190,7 +190,7 @@ def get_execution_result(
190
190
cursor: The cursor object that will handle the results
191
191
192
192
Returns:
193
- ExecuteResponse : An object containing the query results and metadata
193
+ ResultSet : An object containing the query results and metadata
194
194
195
195
Raises:
196
196
ValueError: If the command ID is invalid
@@ -220,7 +220,7 @@ def get_catalogs(
220
220
cursor: The cursor object that will handle the results
221
221
222
222
Returns:
223
- ExecuteResponse : An object containing the catalog metadata
223
+ ResultSet : An object containing the catalog metadata
224
224
225
225
Raises:
226
226
ValueError: If the session ID is invalid
@@ -253,7 +253,7 @@ def get_schemas(
253
253
schema_name: Optional schema name pattern to filter by
254
254
255
255
Returns:
256
- ExecuteResponse : An object containing the schema metadata
256
+ ResultSet : An object containing the schema metadata
257
257
258
258
Raises:
259
259
ValueError: If the session ID is invalid
@@ -290,7 +290,7 @@ def get_tables(
290
290
table_types: Optional list of table types to filter by (e.g., ['TABLE', 'VIEW'])
291
291
292
292
Returns:
293
- ExecuteResponse : An object containing the table metadata
293
+ ResultSet : An object containing the table metadata
294
294
295
295
Raises:
296
296
ValueError: If the session ID is invalid
@@ -327,7 +327,7 @@ def get_columns(
327
327
column_name: Optional column name pattern to filter by
328
328
329
329
Returns:
330
- ExecuteResponse : An object containing the column metadata
330
+ ResultSet : An object containing the column metadata
331
331
332
332
Raises:
333
333
ValueError: If the session ID is invalid
0 commit comments