We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b52146 commit 0c2fe31Copy full SHA for 0c2fe31
1 file changed
datafusion/sql/src/relation/mod.rs
@@ -438,7 +438,8 @@ impl<S: ContextProvider> SqlToRel<'_, S> {
438
.context_provider
439
.get_table_function_source(tbl_func_ref.table(), func_args)?;
440
let plan =
441
- LogicalPlanBuilder::scan(tbl_func_ref.table(), provider, None)?.build()?;
+ LogicalPlanBuilder::scan(tbl_func_ref.table(), provider, None)?
442
+ .build()?;
443
(plan, alias)
444
}
445
// @todo: Support TableFactory::TableFunction
0 commit comments