duckdb 0.6.2-dev6.0 → 0.6.2-dev9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/duckdb.cpp +10 -1
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +30475 -30475
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -159098,7 +159098,16 @@ unique_ptr<LogicalOperator> FilterPushdown::PushdownLeftJoin(unique_ptr<LogicalO
|
|
|
159098
159098
|
right_pushdown.GenerateFilters();
|
|
159099
159099
|
op->children[0] = left_pushdown.Rewrite(move(op->children[0]));
|
|
159100
159100
|
op->children[1] = right_pushdown.Rewrite(move(op->children[1]));
|
|
159101
|
-
|
|
159101
|
+
if (filters.empty()) {
|
|
159102
|
+
// no filters to push
|
|
159103
|
+
return op;
|
|
159104
|
+
}
|
|
159105
|
+
auto filter = make_unique<LogicalFilter>();
|
|
159106
|
+
for (auto &f : filters) {
|
|
159107
|
+
filter->expressions.push_back(move(f->filter));
|
|
159108
|
+
}
|
|
159109
|
+
filter->children.push_back(move(op));
|
|
159110
|
+
return move(filter);
|
|
159102
159111
|
}
|
|
159103
159112
|
|
|
159104
159113
|
} // namespace duckdb
|
package/src/duckdb.hpp
CHANGED
|
@@ -11,8 +11,8 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
11
11
|
#pragma once
|
|
12
12
|
#define DUCKDB_AMALGAMATION 1
|
|
13
13
|
#define DUCKDB_AMALGAMATION_EXTENDED 1
|
|
14
|
-
#define DUCKDB_SOURCE_ID "
|
|
15
|
-
#define DUCKDB_VERSION "v0.6.2-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "6bed24bd49"
|
|
15
|
+
#define DUCKDB_VERSION "v0.6.2-dev9"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|