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

Method eq

datafusion/expr/src/logical_plan/plan.rs:2799–2805  ·  view source on GitHub ↗
(&self, other: &Self)

Source from the content-addressed store, hash-verified

2797
2798impl PartialEq for TableScan {
2799 fn eq(&self, other: &Self) -> bool {
2800 self.table_name == other.table_name
2801 && self.projection == other.projection
2802 && self.projected_schema == other.projected_schema
2803 && self.filters == other.filters
2804 && self.fetch == other.fetch
2805 }
2806}
2807
2808impl Eq for TableScan {}

Calls

no outgoing calls