You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ja...@apache.org on 2024/02/23 06:38:04 UTC

(arrow-datafusion) branch main updated: Minor: Adding missing fields to debug for (#9325)

This is an automated email from the ASF dual-hosted git repository.

jayzhan 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 fad6061562 Minor: Adding missing fields to debug for (#9325)
fad6061562 is described below

commit fad60615623079ee733c6e48f3ef4749d001ac19
Author: comphead <co...@users.noreply.github.com>
AuthorDate: Thu Feb 22 22:38:00 2024 -0800

    Minor: Adding missing fields to debug for (#9325)
---
 datafusion/physical-expr/src/scalar_function.rs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/datafusion/physical-expr/src/scalar_function.rs b/datafusion/physical-expr/src/scalar_function.rs
index b73626aa43..bfe0fdb279 100644
--- a/datafusion/physical-expr/src/scalar_function.rs
+++ b/datafusion/physical-expr/src/scalar_function.rs
@@ -69,6 +69,8 @@ impl Debug for ScalarFunctionExpr {
             .field("name", &self.name)
             .field("args", &self.args)
             .field("return_type", &self.return_type)
+            .field("monotonicity", &self.monotonicity)
+            .field("supports_zero_argument", &self.supports_zero_argument)
             .finish()
     }
 }