Skip to content

Commit

Permalink
Fix spelling of indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Jun 6, 2022
1 parent 945626a commit 30ae5df
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 @@ -1666,9 +1666,9 @@ impl<'a, S: ContextProvider> SqlToRel<'a, S> {
}
}

SQLExpr::ArrayIndex { obj, indexs } => {
SQLExpr::ArrayIndex { obj, indexes } => {
let expr = self.sql_expr_to_logical_expr(*obj, schema, ctes)?;
plan_indexed(expr, indexs)
plan_indexed(expr, indexes)
}

SQLExpr::CompoundIdentifier(ids) => {
Expand Down

0 comments on commit 30ae5df

Please sign in to comment.