Expand description
Join query analysis and extraction
This module analyzes JOIN clauses to extract:
- Join type (INNER, LEFT, RIGHT, FULL)
- Key columns for join condition
- Time bounds for stream-stream joins
- Detection of lookup joins vs stream-stream joins
Structs§
- Join
Analysis - Analysis result for a JOIN clause
Enums§
- Asof
SqlDirection - Direction for ASOF JOIN time matching.
- Join
Type - Join type classification
Functions§
- analyze_
join - Analyze a SELECT statement for join information.
- count_
joins - Count the number of joins in a SELECT.
- has_
join - Check if a SELECT contains a join.