MCPcopy Create free account
hub / github.com/apache/datafusion / eq

Method eq

datafusion/expr/src/logical_plan/dml.rs:62–64  ·  view source on GitHub ↗
(&self, other: &Self)

Source from the content-addressed store, hash-verified

60// Implement PartialEq manually
61impl PartialEq for CopyTo {
62 fn eq(&self, other: &Self) -> bool {
63 self.input == other.input && self.output_url == other.output_url
64 }
65}
66
67// Implement Eq (no need for additional logic over PartialEq)

Callers 10

plan_builder_simpleFunction · 0.45
exists_subqueryFunction · 0.45
filter_in_subqueryFunction · 0.45
select_scalar_subqueryFunction · 0.45
rewriter_rewriteFunction · 0.45
rewriter_visitFunction · 0.45
rewrite_betweenFunction · 0.45

Calls 1

schemaMethod · 0.45

Tested by 9

plan_builder_simpleFunction · 0.36
exists_subqueryFunction · 0.36
filter_in_subqueryFunction · 0.36
select_scalar_subqueryFunction · 0.36
rewriter_rewriteFunction · 0.36
rewriter_visitFunction · 0.36