We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 257ecf2 commit a7cfa07Copy full SHA for a7cfa07
genie/load.py
@@ -315,9 +315,7 @@ def store_database(
315
table_entity = syn.get(database_table_synid)
316
# upsert table with new and updated rows
317
if not all_updates.empty:
318
- Table(id=database_table_synid).store_rows(
319
- all_updates, to_csv_kwargs={"float_format": "%.12g"}
320
- )
+ Table(id=database_table_synid).store_rows(all_updates)
321
logger.info(f"Upserting {len(all_updates)} rows from {table_entity.name} table")
322
# delete rows from the database
323
if not to_delete_rows.empty:
0 commit comments