(&self, other: &Self)
| 2797 | |
| 2798 | impl 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 | |
| 2808 | impl Eq for TableScan {} |
no outgoing calls