We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56dd591 commit 0e57d1fCopy full SHA for 0e57d1f
bigframes/session/_io/bigquery/__init__.py
@@ -146,7 +146,9 @@ def create_temp_table(
146
destination.schema = schema
147
if cluster_columns:
148
destination.clustering_fields = cluster_columns
149
- bqclient.create_table(destination)
+ # Ok if already exists, since this will only happen from retries internal to this method
150
+ # as the requested table id has a random UUID4 component.
151
+ bqclient.create_table(destination, exists_ok=True)
152
return f"{table_ref.project}.{table_ref.dataset_id}.{table_ref.table_id}"
153
154
0 commit comments