File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -463,6 +463,7 @@ def execute_command(
463463 async_op : bool ,
464464 enforce_embedded_schema_correctness : bool ,
465465 row_limit : Optional [int ] = None ,
466+ query_tags : Optional [Dict [str , Optional [str ]]] = None , # TODO: implement query_tags for SEA backend
466467 ) -> Union [SeaResultSet , None ]:
467468 """
468469 Execute a SQL command using the SEA backend.
Original file line number Diff line number Diff line change @@ -898,7 +898,9 @@ def concat_table_chunks(
898898 return pyarrow .concat_tables (table_chunks )
899899
900900
901- def serialize_query_tags (query_tags : Optional [Dict [str , Optional [str ]]]) -> Optional [str ]:
901+ def serialize_query_tags (
902+ query_tags : Optional [Dict [str , Optional [str ]]]
903+ ) -> Optional [str ]:
902904 """
903905 Serialize query_tags dictionary to a string format.
904906
You can’t perform that action at this time.
0 commit comments