Skip to content

Commit

Permalink
Minor: Adding missing fields to debug for (#9325)
Browse files Browse the repository at this point in the history
  • Loading branch information
comphead authored Feb 23, 2024
1 parent ae4113d commit fad6061
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions datafusion/physical-expr/src/scalar_function.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}
Expand Down

0 comments on commit fad6061

Please sign in to comment.