Skip to content

Commit

Permalink
fixed minor bug in dynamic table config
Browse files Browse the repository at this point in the history
  • Loading branch information
shirleycohen committed Apr 2, 2024
1 parent a1629a9 commit 9ab1de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DataCatalogController.py
Original file line number Diff line number Diff line change
Expand Up @@ -1793,7 +1793,7 @@ def run_query(self, query_str, field_type, batch_mode):

else:
print('query_str:', query_str)
rows = self.bq_client.query_and_wait(query_str).result()
rows = self.bq_client.query_and_wait(query_str)

# if query expression is well-formed, there should only be a single row returned with a single field_value
# However, user may mistakenly run a query that returns a list of rows. In that case, grab only the top row.
Expand Down

0 comments on commit 9ab1de9

Please sign in to comment.