Skip to content

Add print #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions datafusion/src/plugin/plugin_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ impl GlobalPluginManager {
}
// find library file from udaf_plugin_path
info!("load plugin from dir:{}", plugin_path);
println!("load plugin from dir:{}", plugin_path);

let plugin_files = self.get_all_plugin_files(plugin_path)?;

Expand All @@ -83,7 +82,7 @@ impl GlobalPluginManager {
"not found plugin_declaration in the library: {}",
plugin_file.path().to_str().unwrap()
);
return Ok(());
continue;
}

let dec = dec.unwrap().read();
Expand Down Expand Up @@ -140,10 +139,6 @@ impl GlobalPluginManager {
"load plugin from library file:{}",
item.path().to_str().unwrap()
);
println!(
"load plugin from library file:{}",
item.path().to_str().unwrap()
);
return Some(item);
}
}
Expand Down
1 change: 0 additions & 1 deletion datafusion/src/plugin/udf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ impl PluginRegistrar for UDFPluginManager {
format!("not found fn registrar_udf_plugin in the library: {}", e),
))
})?;
println!("1111111111111111111111");
let udf_plugin: Box<dyn UDFPlugin> = register_fun();
udf_plugin
.udf_names()
Expand Down