This commit is contained in:
Steve Nyemba 2021-09-03 01:25:45 -05:00
parent 135d4ef3f6
commit 44ef71eb92
1 changed files with 2 additions and 1 deletions

View File

@ -303,7 +303,8 @@ class BQWriter(BigQuery,Writer):
self.mode['destination_table'] = _args['table'].strip()
if 'schema' in _args :
self.mode['table_schema'] = _args['schema']
_mode = copy.deepcopy(self.mode)
# _mode = copy.deepcopy(self.mode)
_mode = self.mode
_df.to_gbq(**self.mode) #if_exists='append',destination_table=partial,credentials=credentials,chunksize=90000)
pass