From 6a41e42447fd717b025bd4e5987e76ba59c283a6 Mon Sep 17 00:00:00 2001 From: gaojun Date: Wed, 2 Mar 2022 14:29:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=B5=8B=E8=AF=95=E7=94=A8?= =?UTF-8?q?=E7=9A=84=E6=97=A5=E5=BF=97=E8=BE=93=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- datafusion/src/plugin/udf.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/datafusion/src/plugin/udf.rs b/datafusion/src/plugin/udf.rs index 3b33da3e3468..a906554956e5 100644 --- a/datafusion/src/plugin/udf.rs +++ b/datafusion/src/plugin/udf.rs @@ -127,7 +127,6 @@ macro_rules! declare_udf_plugin { // make sure the constructor is the correct type. let constructor: fn() -> $curr_plugin_type = $constructor; let object = constructor(); - println!("I be called"); Box::new(object) }