(&mut self, k: LogicalPlan, v: Vec<Vec<RecordBatch>>)
| 220 | |
| 221 | impl CacheManager { |
| 222 | pub fn put(&mut self, k: LogicalPlan, v: Vec<Vec<RecordBatch>>) { |
| 223 | self.cache.insert(k, v); |
| 224 | } |
| 225 | |
| 226 | pub fn get(&self, k: &LogicalPlan) -> Option<&Vec<Vec<RecordBatch>>> { |
| 227 | self.cache.get(k) |
no test coverage detected