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 +1 -1
- package/src/duckdb.cpp +2 -2
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +36656 -36656
package/package.json
CHANGED
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
|
|
150863
|
-
if (
|
|
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 "
|
|
15
|
-
#define DUCKDB_VERSION "v0.5.2-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "bf7498ff5"
|
|
15
|
+
#define DUCKDB_VERSION "v0.5.2-dev1207"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|