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 CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
4
  "types": "./lib/duckdb.d.ts",
5
- "version": "0.6.2-dev6.0",
5
+ "version": "0.6.2-dev9.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
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
- return FinishPushdown(move(op));
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 "8470c7c625"
15
- #define DUCKDB_VERSION "v0.6.2-dev6"
14
+ #define DUCKDB_SOURCE_ID "6bed24bd49"
15
+ #define DUCKDB_VERSION "v0.6.2-dev9"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //