MCPcopy Create free account
hub / github.com/BlazingDB/blazingsql / load_left_set

Method load_left_set

engine/src/execution_kernels/BatchJoinProcessing.cpp:281–287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279}
280
281std::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
289std::unique_ptr<ral::cache::CacheData> PartwiseJoin::load_right_set(){
290 this->max_right_ind++;

Callers

nothing calls this directly

Calls 1

pullCacheDataMethod · 0.80

Tested by

no test coverage detected