Skip to content

Commit

Permalink
fix arraysize default always takes priority over querystring
Browse files Browse the repository at this point in the history
  • Loading branch information
OmriBromberg committed May 12, 2021
1 parent b0d5928 commit 829ba7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybigquery/sqlalchemy_bigquery.py
Expand Up @@ -606,7 +606,7 @@ def create_connect_args(self, url):
list_tables_page_size
) = parse_url(url)

self.arraysize = self.arraysize or arraysize
self.arraysize = arraysize or self.arraysize
self.list_tables_page_size = list_tables_page_size or self.list_tables_page_size
self.location = location or self.location
self.credentials_path = credentials_path or self.credentials_path
Expand Down

0 comments on commit 829ba7c

Please sign in to comment.