We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b45cd17 commit 8bf0123Copy full SHA for 8bf0123
1 file changed
crates/datafusion-app/src/extensions/deltalake.rs
@@ -58,8 +58,8 @@ impl TableProviderFactory for DeltaTableFactory {
58
_ctx: &dyn Session,
59
cmd: &CreateExternalTable,
60
) -> datafusion::error::Result<Arc<dyn datafusion::catalog::TableProvider>> {
61
- let table_url = ensure_table_uri(&cmd.location)
62
- .map_err(|e| DataFusionError::External(Box::new(e)))?;
+ let table_url =
+ ensure_table_uri(&cmd.location).map_err(|e| DataFusionError::External(Box::new(e)))?;
63
64
let provider = if cmd.options.is_empty() {
65
deltalake::open_table(table_url)
0 commit comments