dflib
dflib copied to clipboard
TableSaver.save(..) doesn't record the status of deleted rows
SaveStats stats = connector
.tableSaver("t1")
.mergeByColumns("name", "id")
.deleteUnmatchedRows()
.save(df);
When "deleteUnmatchedRows" is in effect, "stats" does not include the info on deleted rows. We need to include that.