Skip to main content

Module operators

Module operators 

Source
Expand description

Physical Operators Module

Structs§

FilterOperator
필터 연산자 (WHERE 조건) — Arrow compute kernel로 predicate 평가
HashAggregateOperator
Hash Aggregate 연산자 (GROUP BY) — AHashMap 기반 집계
HashJoinOperator
Hash Join 연산자 — build from left, probe from right
LimitOperator
Limit 연산자 (LIMIT/OFFSET)
ProjectionOperator
Projection 연산자 (SELECT 컬럼 선택/계산)
SortOperator
Sort 연산자 (ORDER BY) — Arrow sort_to_indices 활용
TableScanOperator
테이블 스캔 연산자 — RecordBatch 데이터를 순차적으로 반환

Traits§

PhysicalOperator
물리 연산자 트레이트 — Volcano 실행 모델 (Pull 기반)