Skip to content

Commit

Permalink
fix(ingest): bigquery - Fix syntax error in get_all_schema_tables_que…
Browse files Browse the repository at this point in the history
…ry (#6159)

Co-authored-by: Nguyen Tri Hieu <[email protected]>
  • Loading branch information
hieunt-itfoss and Nguyen Tri Hieu authored Oct 10, 2022
1 parent e9c4c82 commit e9f6154
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def get_all_schema_tables_query(schema: str) -> str:
f"size_bytes, "
f"last_modified_time, "
f"row_count, "
f"FROM {schema}.__TABLES__"
f"FROM `{schema}.__TABLES__`"
)
return base_query

Expand Down

0 comments on commit e9f6154

Please sign in to comment.