File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2007,14 +2007,16 @@ async def create_from_pandas(
20072007 credentials = self ._api_client ._credentials
20082008
20092009 if target_table_id :
2010- target_table_id = _datasets_utils ._normalize_and_validate_table_id (
2011- table_id = target_table_id ,
2012- project = project ,
2013- location = location ,
2014- credentials = credentials ,
2010+ target_table_id = (
2011+ await _datasets_utils ._normalize_and_validate_table_id_async (
2012+ table_id = target_table_id ,
2013+ project = project ,
2014+ location = location ,
2015+ credentials = credentials ,
2016+ )
20152017 )
20162018 else :
2017- dataset_id = _datasets_utils ._create_default_bigquery_dataset_if_not_exists (
2019+ dataset_id = await _datasets_utils ._create_default_bigquery_dataset_if_not_exists_async (
20182020 project = project , location = location , credentials = credentials
20192021 )
20202022 target_table_id = _datasets_utils ._generate_target_table_id (dataset_id )
You can’t perform that action at this time.
0 commit comments