@@ -37,30 +37,6 @@ TableFunction::TableFunction(const vector<LogicalType> &arguments, table_functio
3737TableFunction::TableFunction () : TableFunction(" " , {}, nullptr , nullptr , nullptr , nullptr ) {
3838}
3939
40- bool TableFunction::operator ==(const TableFunction &rhs) const {
41- return name == rhs.name && arguments == rhs.arguments && varargs == rhs.varargs && bind == rhs.bind &&
42- bind_replace == rhs.bind_replace && bind_operator == rhs.bind_operator && init_global == rhs.init_global &&
43- init_local == rhs.init_local && function == rhs.function && in_out_function == rhs.in_out_function &&
44- in_out_function_final == rhs.in_out_function_final && statistics == rhs.statistics &&
45- dependency == rhs.dependency && cardinality == rhs.cardinality &&
46- pushdown_complex_filter == rhs.pushdown_complex_filter && pushdown_expression == rhs.pushdown_expression &&
47- to_string == rhs.to_string && dynamic_to_string == rhs.dynamic_to_string &&
48- table_scan_progress == rhs.table_scan_progress && get_partition_data == rhs.get_partition_data &&
49- get_bind_info == rhs.get_bind_info && type_pushdown == rhs.type_pushdown &&
50- get_multi_file_reader == rhs.get_multi_file_reader && supports_pushdown_type == rhs.supports_pushdown_type &&
51- get_partition_info == rhs.get_partition_info && get_partition_stats == rhs.get_partition_stats &&
52- get_virtual_columns == rhs.get_virtual_columns && get_row_id_columns == rhs.get_row_id_columns &&
53- serialize == rhs.serialize && deserialize == rhs.deserialize &&
54- verify_serialization == rhs.verify_serialization && projection_pushdown == rhs.projection_pushdown &&
55- filter_pushdown == rhs.filter_pushdown && filter_prune == rhs.filter_prune &&
56- sampling_pushdown == rhs.sampling_pushdown && late_materialization == rhs.late_materialization &&
57- global_initialization == rhs.global_initialization ;
58- }
59-
60- bool TableFunction::operator !=(const TableFunction &rhs) const {
61- return !(*this == rhs);
62- }
63-
6440bool TableFunction::Equal (const TableFunction &rhs) const {
6541 // number of types
6642 if (this ->arguments .size () != rhs.arguments .size ()) {
0 commit comments