This is an automated email from the ASF dual-hosted git repository.
xudong963 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new 884101e10 Derive Hash for JoinType (#2972)
884101e10 is described below
commit 884101e106c580c518409a8685c36d0c48c1403b
Author: Renjie Liu <[email protected]>
AuthorDate: Wed Jul 27 18:32:31 2022 +0800
Derive Hash for JoinType (#2972)
---
datafusion/expr/src/logical_plan/plan.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/datafusion/expr/src/logical_plan/plan.rs
b/datafusion/expr/src/logical_plan/plan.rs
index d42109788..bba5c0c14 100644
--- a/datafusion/expr/src/logical_plan/plan.rs
+++ b/datafusion/expr/src/logical_plan/plan.rs
@@ -937,7 +937,7 @@ impl ToStringifiedPlan for LogicalPlan {
}
/// Join type
-#[derive(Debug, Clone, Copy, PartialEq, Eq)]
+#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum JoinType {
/// Inner Join
Inner,