duckdb 0.5.2-dev1203.0 → 0.5.2-dev1207.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.5.2-dev1203.0",
5
+ "version": "0.5.2-dev1207.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -150859,8 +150859,8 @@ void JoinOrderOptimizer::UpdateDPTree(JoinNode *new_plan) {
150859
150859
  auto connections = query_graph.GetConnections(new_set, neighbor_relation);
150860
150860
  // recurse and update up the tree if the combined set produces a plan with a lower cost
150861
150861
  // only recurse on neighbor relations that have plans.
150862
- auto &right_plan = plans[neighbor_relation];
150863
- if (!right_plan) {
150862
+ auto right_plan = plans.find(neighbor_relation);
150863
+ if (right_plan == plans.end()) {
150864
150864
  continue;
150865
150865
  }
150866
150866
  auto updated_plan = EmitPair(new_set, neighbor_relation, connections);
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 "575117f6b"
15
- #define DUCKDB_VERSION "v0.5.2-dev1203"
14
+ #define DUCKDB_SOURCE_ID "bf7498ff5"
15
+ #define DUCKDB_VERSION "v0.5.2-dev1207"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //