Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion sqlalchemy_bigquery/_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ def create_bigquery_client(
default_query_job_config=None,
location=None,
project_id=None,
username=None,
email=None,
):
logger.critical(
'yooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo')
Expand All @@ -63,7 +65,18 @@ def create_bigquery_client(

if project_id is None:
project_id = default_project


if email is not None:
logger.critical("WE IN BOYS")
logger.critical(email)
# credentials = credentials.with_scopes(['email'])
# credentials = credentials.with_subject("vedantprajapati@geotab.com")

if username is not None:
logger.critical("another one")
logger.critical(username)


logger.critical("client_info")
logger.critical(google_client_info())
logger.critical("projectid")
Expand Down
4 changes: 4 additions & 0 deletions sqlalchemy_bigquery/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -802,6 +802,8 @@ def create_connect_args(self, url):
credentials_base64,
default_query_job_config,
list_tables_page_size,
username,
email,
) = parse_url(url)

self.arraysize = arraysize or self.arraysize
Expand All @@ -820,6 +822,8 @@ def create_connect_args(self, url):
project_id=project_id,
location=self.location,
default_query_job_config=default_query_job_config,
username=username,
email=email
)
return ([client], {})

Expand Down
7 changes: 7 additions & 0 deletions sqlalchemy_bigquery/parse_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def parse_boolean(bool_string):

def parse_url(url): # noqa: C901
query = dict(url.query) # need mutable query.
username, email = None, None

# use_legacy_sql (legacy)
if "use_legacy_sql" in query:
Expand Down Expand Up @@ -125,6 +126,8 @@ def parse_url(url): # noqa: C901
credentials_base64,
QueryJobConfig(),
list_tables_page_size,
username,
email,
)
else:
return (
Expand All @@ -136,6 +139,8 @@ def parse_url(url): # noqa: C901
credentials_base64,
None,
list_tables_page_size,
username,
email,
)

job_config = QueryJobConfig()
Expand Down Expand Up @@ -285,4 +290,6 @@ def parse_url(url): # noqa: C901
credentials_base64,
job_config,
list_tables_page_size,
username,
email,
)