Crate datafusion_sql
source ·Expand description
This module provides:
-
A SQL parser,
DFParser
, that translates SQL query text into an abstract syntax tree (AST),Statement
. -
A SQL query planner
SqlToRel
that createsLogicalPlan
s fromStatement
s.
Re-exports
pub use sqlparser;
Modules
SqlToRel
: SQL Query Planner (producesLogicalPlan
from SQL AST)- SQL Utility Functions
Structs
- A resolved path to a table of the form “catalog.schema.table”
Enums
TableReference
s represent a multi part identifier (path) to a table that may require further resolution.
Functions
- Parses
str
into aDataType
.