File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2002,14 +2002,16 @@ async def create_from_pandas(
20022002 credentials = self ._api_client ._credentials
20032003
20042004 if target_table_id :
2005- target_table_id = _datasets_utils ._normalize_and_validate_table_id (
2006- table_id = target_table_id ,
2007- project = project ,
2008- location = location ,
2009- credentials = credentials ,
2005+ target_table_id = (
2006+ await _datasets_utils ._normalize_and_validate_table_id_async (
2007+ table_id = target_table_id ,
2008+ project = project ,
2009+ location = location ,
2010+ credentials = credentials ,
2011+ )
20102012 )
20112013 else :
2012- dataset_id = _datasets_utils ._create_default_bigquery_dataset_if_not_exists (
2014+ dataset_id = await _datasets_utils ._create_default_bigquery_dataset_if_not_exists_async (
20132015 project = project , location = location , credentials = credentials
20142016 )
20152017 target_table_id = _datasets_utils ._generate_target_table_id (dataset_id )
You can’t perform that action at this time.
0 commit comments