Skip to content

Commit

Permalink
clarify type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Feb 16, 2025
1 parent e940751 commit ef1184e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/sql/src/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ impl PlannerContext {
/// phase looks up table and column names using the [`ContextProvider`].
/// 2. Mechanical translation of the AST into a [`LogicalPlan`].
///
/// It does not perform type checking, semantic analysis, type coercion, or
/// optimization, which are performed by other components.
/// It does not perform type coercion, or perform optimization, which are done
/// by subsequent passes.
///
/// Key interfaces are:
/// * [`Self::sql_statement_to_plan`]: Convert a statement (e.g. `SELECT ...`) into a [`LogicalPlan`]
Expand Down

0 comments on commit ef1184e

Please sign in to comment.