Public Attributes | List of all members
cudf::join_partition_context Struct Reference

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.
 

Detailed Description

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.

Definition at line 60 of file join.hpp.


The documentation for this struct was generated from the following file: