Module datafusion_sql::planner
source · Expand description
SqlToRel
: SQL Query Planner (produces LogicalPlan
from SQL AST)
Structs
- Ident Normalizer
- SQL parser options
- Struct to store the states used by the Planner. The Planner will leverage the states to resolve CTEs, Views, subqueries and PREPARE statements. The states include Common Table Expression (CTE) provided with WITH clause and Parameter Data Types provided with PREPARE statement and the query schema of the outer query plan
- SQL query planner
Traits
- The ContextProvider trait allows the query planner to obtain meta-data about tables and functions referenced in SQL statements
Functions
- Construct a WHERE qualifier suitable for e.g. information_schema filtering from the provided object identifiers (catalog, schema and table names).
- Create a
OwnedTableReference
after normalizing the specified ObjectName