dflib icon indicating copy to clipboard operation
dflib copied to clipboard

TableSaver.save(..) doesn't record the status of deleted rows

Open andrus opened this issue 5 years ago • 0 comments

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.

andrus avatar Aug 05 '20 10:08 andrus