|
28 | 28 | public interface MergeSummary extends WriteSummary { |
29 | 29 |
|
30 | 30 | /** |
31 | | - * Returns the number of target rows copied unmodified because they did not match any action. |
| 31 | + * Returns the number of target rows copied unmodified because they did not match any action, |
| 32 | + * or -1 if not found. |
32 | 33 | */ |
33 | 34 | long numTargetRowsCopied(); |
34 | 35 |
|
35 | 36 | /** |
36 | | - * Returns the number of target rows deleted. |
| 37 | + * Returns the number of target rows deleted, or -1 if not found. |
37 | 38 | */ |
38 | 39 | long numTargetRowsDeleted(); |
39 | 40 |
|
40 | 41 | /** |
41 | | - * Returns the number of target rows updated. |
| 42 | + * Returns the number of target rows updated, or -1 if not found. |
42 | 43 | */ |
43 | 44 | long numTargetRowsUpdated(); |
44 | 45 |
|
45 | 46 | /** |
46 | | - * Returns the number of target rows inserted. |
| 47 | + * Returns the number of target rows inserted, or -1 if not found. |
47 | 48 | */ |
48 | 49 | long numTargetRowsInserted(); |
49 | 50 |
|
50 | 51 | /** |
51 | | - * Returns the number of target rows updated by a matched clause. |
| 52 | + * Returns the number of target rows updated by a matched clause, or -1 if not found. |
52 | 53 | */ |
53 | 54 | long numTargetRowsMatchedUpdated(); |
54 | 55 |
|
55 | 56 | /** |
56 | | - * Returns the number of target rows deleted by a matched clause |
| 57 | + * Returns the number of target rows deleted by a matched clause, or -1 if not found. |
57 | 58 | */ |
58 | 59 | long numTargetRowsMatchedDeleted(); |
59 | 60 |
|
60 | 61 | /** |
61 | | - * Returns the number of target rows updated by a not matched by source clause. |
| 62 | + * Returns the number of target rows updated by a not matched by source clause, |
| 63 | + * or -1 if not found. |
62 | 64 | */ |
63 | 65 | long numTargetRowsNotMatchedBySourceUpdated(); |
64 | 66 |
|
65 | 67 | /** |
66 | | - * Returns the number of target rows deleted by a not matched by source clause. |
| 68 | + * Returns the number of target rows deleted by a not matched by source clause, |
| 69 | + * or -1 if not found. |
67 | 70 | */ |
68 | 71 | long numTargetRowsNotMatchedBySourceDeleted(); |
69 | 72 | } |
0 commit comments