Skip to content

Commit 9ae5d43

Browse files
duckdblabs-botgithub-actions[bot]
authored andcommitted
Update vendored DuckDB sources to 68d7555f68
1 parent db63b69 commit 9ae5d43

File tree

4 files changed

+4
-30
lines changed

4 files changed

+4
-30
lines changed

src/duckdb/src/execution/operator/scan/physical_table_scan.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ bool PhysicalTableScan::Equals(const PhysicalOperator &other_p) const {
259259
return false;
260260
}
261261
auto &other = other_p.Cast<PhysicalTableScan>();
262-
if (function != other.function) {
262+
if (function.function != other.function.function) {
263263
return false;
264264
}
265265
if (column_ids != other.column_ids) {

src/duckdb/src/function/table/version/pragma_version.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ifndef DUCKDB_PATCH_VERSION
2-
#define DUCKDB_PATCH_VERSION "2-dev332"
2+
#define DUCKDB_PATCH_VERSION "2"
33
#endif
44
#ifndef DUCKDB_MINOR_VERSION
55
#define DUCKDB_MINOR_VERSION 4
@@ -8,10 +8,10 @@
88
#define DUCKDB_MAJOR_VERSION 1
99
#endif
1010
#ifndef DUCKDB_VERSION
11-
#define DUCKDB_VERSION "v1.4.2-dev332"
11+
#define DUCKDB_VERSION "v1.4.2"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "0efe5ccb5b"
14+
#define DUCKDB_SOURCE_ID "68d7555f68"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

src/duckdb/src/function/table_function.cpp

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -37,30 +37,6 @@ TableFunction::TableFunction(const vector<LogicalType> &arguments, table_functio
3737
TableFunction::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-
6440
bool TableFunction::Equal(const TableFunction &rhs) const {
6541
// number of types
6642
if (this->arguments.size() != rhs.arguments.size()) {

src/duckdb/src/include/duckdb/function/table_function.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,8 +432,6 @@ class TableFunction : public SimpleNamedParameterFunction { // NOLINT: work-arou
432432
TableFunctionInitialization global_initialization = TableFunctionInitialization::INITIALIZE_ON_EXECUTE;
433433

434434
DUCKDB_API bool Equal(const TableFunction &rhs) const;
435-
DUCKDB_API bool operator==(const TableFunction &rhs) const;
436-
DUCKDB_API bool operator!=(const TableFunction &rhs) const;
437435
};
438436

439437
} // namespace duckdb

0 commit comments

Comments
 (0)