Module datafusion_sql::planner

source ·
Expand description

SQL Query Planner (produces logical plan 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