This is an automated email from the ASF dual-hosted git repository.
viirya pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new f92e95cc99 Minor: remove stray println from `array_expressions.rs`
(#7389)
f92e95cc99 is described below
commit f92e95cc99ef8fdec746a064c083510cf503db36
Author: Andrew Lamb <[email protected]>
AuthorDate: Wed Aug 23 16:16:21 2023 -0400
Minor: remove stray println from `array_expressions.rs` (#7389)
---
datafusion/physical-expr/src/array_expressions.rs | 1 -
1 file changed, 1 deletion(-)
diff --git a/datafusion/physical-expr/src/array_expressions.rs
b/datafusion/physical-expr/src/array_expressions.rs
index 48c9210872..06432b615c 100644
--- a/datafusion/physical-expr/src/array_expressions.rs
+++ b/datafusion/physical-expr/src/array_expressions.rs
@@ -1000,7 +1000,6 @@ macro_rules! general_repeat_list {
/// Array_empty SQL function
pub fn array_empty(args: &[ArrayRef]) -> Result<ArrayRef> {
- println!("args[0]: {:?}", &args[0]);
if args[0].as_any().downcast_ref::<NullArray>().is_some() {
return Ok(args[0].clone());
}