| 279 | } |
| 280 | |
| 281 | std::unique_ptr<ral::cache::CacheData> PartwiseJoin::load_left_set(){ |
| 282 | this->max_left_ind++; |
| 283 | auto cache_data = this->left_input->pullCacheData(); |
| 284 | RAL_EXPECTS(cache_data != nullptr, "In PartwiseJoin: The left input cache data cannot be null"); |
| 285 | |
| 286 | return cache_data; |
| 287 | } |
| 288 | |
| 289 | std::unique_ptr<ral::cache::CacheData> PartwiseJoin::load_right_set(){ |
| 290 | this->max_right_ind++; |
nothing calls this directly
no test coverage detected