Skip to content

Commit

Permalink
chore(binder): fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
Dousir9 committed Dec 13, 2024
1 parent 0ed0ae4 commit 626ba74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query/sql/src/planner/binder/ddl/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ impl Binder {
}

async fn as_query_plan(&mut self, query: &Query) -> Result<Plan> {
let stmt = Statement::Query(Box::new(*query.clone()));
let stmt = Statement::Query(Box::new(query.clone()));
let mut bind_context = BindContext::new();
self.bind_statement(&mut bind_context, &stmt).await
}
Expand Down

0 comments on commit 626ba74

Please sign in to comment.