MCPcopy Create free account
hub / github.com/apache/impala / GetNumModifiedRows

Method GetNumModifiedRows

be/src/runtime/dml-exec-state.cc:157–164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

155}
156
157int64_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
166int64_t DmlExecState::GetNumDeletedRows() {
167 lock_guard<mutex> l(lock_);

Calls

no outgoing calls

Tested by

no test coverage detected