Skip to content

Commit

Permalink
remove self reference from get_columns query (move-coop#1008)
Browse files Browse the repository at this point in the history
Co-authored-by: Erica Renée Faulkenberry <[email protected]>
  • Loading branch information
coastlines and Erica Renée Faulkenberry authored Mar 7, 2024
1 parent 8dd24a2 commit 17ceb9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsons/google/google_bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,7 @@ def get_columns(self, schema: str, table_name: str):
base_query = f"""
SELECT
*
FROM `{self.project}.{schema}.INFORMATION_SCHEMA.COLUMNS`
FROM `{schema}.INFORMATION_SCHEMA.COLUMNS`
WHERE
table_name = '{table_name}'
"""
Expand Down

0 comments on commit 17ceb9c

Please sign in to comment.