Stores context information for partitioned join operations. More...
#include <join.hpp>
Public Attributes | |
join_match_context | left_table_context |
The match context from a previous inner_join_match_context call. | |
size_type | left_start_idx |
The starting row index of the current left table partition. | |
size_type | left_end_idx |
The ending row index (exclusive) of the current left table partition. | |
Stores context information for partitioned join operations.
This structure maintains context for partitioned join operations, containing the match context from a previous join operation along with the start and end indices that define the current partition of the left table being processed.
Used with partitioned_inner_join() to perform large joins in smaller chunks while preserving the context from the initial match operation.