This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 307f5c3696 minor: impl Clone and Debug on CaseBuilder (#17927)
307f5c3696 is described below
commit 307f5c36969c88183fe5e5a737a762d3eb3bd9a6
Author: Tim Saucer <[email protected]>
AuthorDate: Mon Oct 6 13:18:13 2025 -0400
minor: impl Clone and Debug on CaseBuilder (#17927)
* Make CaseBuilder implement Clone and Debug
* Lost ]
---
datafusion/expr/src/conditional_expressions.rs | 1 +
1 file changed, 1 insertion(+)
diff --git a/datafusion/expr/src/conditional_expressions.rs
b/datafusion/expr/src/conditional_expressions.rs
index 8910b2e9b5..d02f522910 100644
--- a/datafusion/expr/src/conditional_expressions.rs
+++ b/datafusion/expr/src/conditional_expressions.rs
@@ -23,6 +23,7 @@ use datafusion_common::{plan_err, DFSchema, HashSet, Result};
use itertools::Itertools as _;
/// Helper struct for building [Expr::Case]
+#[derive(Debug, Clone)]
pub struct CaseBuilder {
expr: Option<Box<Expr>>,
when_expr: Vec<Expr>,
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]