Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,42 +28,45 @@
public interface MergeSummary extends WriteSummary {

/**
* Returns the number of target rows copied unmodified because they did not match any action.
* Returns the number of target rows copied unmodified because they did not match any action,
* or -1 if not found.
*/
long numTargetRowsCopied();

/**
* Returns the number of target rows deleted.
* Returns the number of target rows deleted, or -1 if not found.
*/
long numTargetRowsDeleted();

/**
* Returns the number of target rows updated.
* Returns the number of target rows updated, or -1 if not found.
*/
long numTargetRowsUpdated();

/**
* Returns the number of target rows inserted.
* Returns the number of target rows inserted, or -1 if not found.
*/
long numTargetRowsInserted();

/**
* Returns the number of target rows updated by a matched clause.
* Returns the number of target rows updated by a matched clause, or -1 if not found.
*/
long numTargetRowsMatchedUpdated();

/**
* Returns the number of target rows deleted by a matched clause
* Returns the number of target rows deleted by a matched clause, or -1 if not found.
*/
long numTargetRowsMatchedDeleted();

/**
* Returns the number of target rows updated by a not matched by source clause.
* Returns the number of target rows updated by a not matched by source clause,
* or -1 if not found.
*/
long numTargetRowsNotMatchedBySourceUpdated();

/**
* Returns the number of target rows deleted by a not matched by source clause.
* Returns the number of target rows deleted by a not matched by source clause,
* or -1 if not found.
*/
long numTargetRowsNotMatchedBySourceDeleted();
}