We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed0ae4 commit 626ba74Copy full SHA for 626ba74
src/query/sql/src/planner/binder/ddl/table.rs
@@ -416,7 +416,7 @@ impl Binder {
416
}
417
418
async fn as_query_plan(&mut self, query: &Query) -> Result<Plan> {
419
- let stmt = Statement::Query(Box::new(*query.clone()));
+ let stmt = Statement::Query(Box::new(query.clone()));
420
let mut bind_context = BindContext::new();
421
self.bind_statement(&mut bind_context, &stmt).await
422
0 commit comments