Skip to content

Commit fe16391

Browse files
committed
fix presubmit errors
Signed-off-by: Jiabin Hu <jiabin.hu@databricks.com>
1 parent cf1bce4 commit fe16391

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/databricks/sql/backend/sea/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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.

src/databricks/sql/utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)