Skip to content

Commit

Permalink
fix server not found bug
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavomm19 committed Nov 22, 2023
1 parent af8ebc0 commit 4c46d6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing_bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ def sql(self, aggs=[]):
# query = f'SELECT * FROM {self.table} '

if len(query_fields) > 0:
query = f"""SELECT {", ".join(query_fields)} FROM `4geeks-dev.{self.table}` """
query = f"""SELECT {", ".join(query_fields)} FROM `breathecode-197918.4geeks_dev.{self.table}` """
else:
query = f"""SELECT * FROM `4geeks-dev.{self.table}` """
query = f"""SELECT * FROM `breathecode-197918.4geeks_dev.{self.table}` """

if self.query:
query += 'WHERE '
Expand Down

0 comments on commit 4c46d6c

Please sign in to comment.