Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leiysky committed May 30, 2022
1 parent ac4acbe commit 0ffc669
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion query/src/sql/planner/binder/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ impl<'a> Binder {
self.bind_statement(bind_context, &stmts[0]).await
}
_ => {
let source = table_meta.read_plan(self.ctx.clone(), None).await?;
let source = table_meta
.read_plan_with_catalog(self.ctx.clone(), catalog.clone(), None)
.await?;
let table_index = self
.metadata
.write()
Expand Down

0 comments on commit 0ffc669

Please sign in to comment.