Skip to content

Commit

Permalink
chore: remove create_session=True when grabbing an anonymous dataset
Browse files Browse the repository at this point in the history
Co-authored-by: Tim Swast <swast@google.com>
  • Loading branch information
cpcloud and tswast committed Nov 15, 2023
1 parent d652dbb commit c3cf316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/bigquery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def table(

def _make_session(self) -> tuple[str, str]:
if self._session_dataset is None:
job_config = bq.QueryJobConfig(create_session=True, use_query_cache=False)
job_config = bq.QueryJobConfig(use_query_cache=False)
query = self.client.query(
"SELECT 1", job_config=job_config, project=self.billing_project
)
Expand Down

0 comments on commit c3cf316

Please sign in to comment.