You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by vi...@apache.org on 2023/05/17 23:28:48 UTC

[arrow-datafusion] branch main updated: Minor: remove left over println (#6375)

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 7e5c92db5f Minor: remove left over println (#6375)
7e5c92db5f is described below

commit 7e5c92db5f0dcc8261a27846165236c4d44460de
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Wed May 17 19:28:41 2023 -0400

    Minor: remove left over println (#6375)
---
 datafusion/optimizer/src/simplify_expressions/regex.rs | 1 -
 1 file changed, 1 deletion(-)

diff --git a/datafusion/optimizer/src/simplify_expressions/regex.rs b/datafusion/optimizer/src/simplify_expressions/regex.rs
index 35f6dcaef0..ca298abcfa 100644
--- a/datafusion/optimizer/src/simplify_expressions/regex.rs
+++ b/datafusion/optimizer/src/simplify_expressions/regex.rs
@@ -180,7 +180,6 @@ fn anchored_literal_to_expr(v: &[Hir]) -> Option<Expr> {
 }
 
 fn lower_simple(mode: &OperatorMode, left: &Expr, hir: &Hir) -> Option<Expr> {
-    println!("Considering hir kind: mode {mode:?} hir: {hir:?}");
     match hir.kind() {
         HirKind::Empty => {
             return Some(mode.expr(Box::new(left.clone()), "%".to_owned()));