| 155 | } |
| 156 | |
| 157 | int64_t DmlExecState::GetNumModifiedRows() { |
| 158 | lock_guard<mutex> l(lock_); |
| 159 | int64_t result = 0; |
| 160 | for (const PartitionStatusMap::value_type& p : per_partition_status_) { |
| 161 | result += p.second.num_modified_rows(); |
| 162 | } |
| 163 | return result; |
| 164 | } |
| 165 | |
| 166 | int64_t DmlExecState::GetNumDeletedRows() { |
| 167 | lock_guard<mutex> l(lock_); |
no outgoing calls
no test coverage detected