We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
to_gbq
bigquery.tables.create
1 parent 439d588 commit 3988306Copy full SHA for 3988306
pandas_gbq/load.py
@@ -119,6 +119,7 @@ def load_parquet(
119
):
120
job_config = bigquery.LoadJobConfig()
121
job_config.write_disposition = "WRITE_APPEND"
122
+ job_config.create_disposition = "CREATE_NEVER"
123
job_config.source_format = "PARQUET"
124
125
if schema is not None:
@@ -148,6 +149,7 @@ def load_csv(
148
149
150
151
152
153
job_config.source_format = "CSV"
154
job_config.allow_quoted_newlines = True
155
0 commit comments