Returns the number of rows returned by this Node.
| 312 | |
| 313 | /// Returns the number of rows returned by this Node. |
| 314 | int64_t rows_returned() const { |
| 315 | DCHECK(getExecutionModel() != NON_TASK_BASED_SYNC); |
| 316 | return num_rows_returned_; |
| 317 | } |
| 318 | |
| 319 | /// Returns the number of rows returned by this Node. Thread safe version of |
| 320 | /// rows_returned(). |
no outgoing calls
no test coverage detected