Update the results of a recursive query iteration to the work table.
(&self, batches: ReservedBatches)
| 82 | |
| 83 | /// Update the results of a recursive query iteration to the work table. |
| 84 | pub(super) fn update(&self, batches: ReservedBatches) { |
| 85 | self.batches.lock().unwrap().replace(batches); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | /// A temporary "working table" operation where the input data will be |
no outgoing calls