Expand description
Physical Operators Module
Structs§
- Filter
Operator - 필터 연산자 (WHERE 조건) — Arrow compute kernel로 predicate 평가
- Hash
Aggregate Operator - Hash Aggregate 연산자 (GROUP BY) — AHashMap 기반 집계
- Hash
Join Operator - Hash Join 연산자 — build from left, probe from right
- Limit
Operator - Limit 연산자 (LIMIT/OFFSET)
- Projection
Operator - Projection 연산자 (SELECT 컬럼 선택/계산)
- Sort
Operator - Sort 연산자 (ORDER BY) — Arrow sort_to_indices 활용
- Table
Scan Operator - 테이블 스캔 연산자 — RecordBatch 데이터를 순차적으로 반환
Traits§
- Physical
Operator - 물리 연산자 트레이트 — Volcano 실행 모델 (Pull 기반)