duckdb 0.5.2-dev55.0 → 0.5.2-dev58.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 +6 -6
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +37563 -37563
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -178885,6 +178885,10 @@ unique_ptr<LogicalOperator> Binder::CreatePlan(BoundSetOperationNode &node) {
|
|
|
178885
178885
|
|
|
178886
178886
|
|
|
178887
178887
|
|
|
178888
|
+
|
|
178889
|
+
|
|
178890
|
+
|
|
178891
|
+
|
|
178888
178892
|
//===----------------------------------------------------------------------===//
|
|
178889
178893
|
// DuckDB
|
|
178890
178894
|
//
|
|
@@ -178936,10 +178940,6 @@ private:
|
|
|
178936
178940
|
} // namespace duckdb
|
|
178937
178941
|
|
|
178938
178942
|
|
|
178939
|
-
|
|
178940
|
-
|
|
178941
|
-
|
|
178942
|
-
|
|
178943
178943
|
namespace duckdb {
|
|
178944
178944
|
|
|
178945
178945
|
static unique_ptr<Expression> PlanUncorrelatedSubquery(Binder &binder, BoundSubqueryExpression &expr,
|
|
@@ -179191,7 +179191,7 @@ static unique_ptr<Expression> PlanCorrelatedSubquery(Binder &binder, BoundSubque
|
|
|
179191
179191
|
auto delim_join = CreateDuplicateEliminatedJoin(correlated_columns, JoinType::MARK, move(root), perform_delim);
|
|
179192
179192
|
delim_join->mark_index = mark_index;
|
|
179193
179193
|
// RHS
|
|
179194
|
-
FlattenDependentJoins flatten(binder, correlated_columns, perform_delim);
|
|
179194
|
+
FlattenDependentJoins flatten(binder, correlated_columns, perform_delim, true);
|
|
179195
179195
|
flatten.DetectCorrelatedExpressions(plan.get());
|
|
179196
179196
|
auto dependent_join = flatten.PushDownDependentJoin(move(plan));
|
|
179197
179197
|
|
|
@@ -179218,7 +179218,7 @@ static unique_ptr<Expression> PlanCorrelatedSubquery(Binder &binder, BoundSubque
|
|
|
179218
179218
|
auto delim_join = CreateDuplicateEliminatedJoin(correlated_columns, JoinType::MARK, move(root), perform_delim);
|
|
179219
179219
|
delim_join->mark_index = mark_index;
|
|
179220
179220
|
// RHS
|
|
179221
|
-
FlattenDependentJoins flatten(binder, correlated_columns, true);
|
|
179221
|
+
FlattenDependentJoins flatten(binder, correlated_columns, true, true);
|
|
179222
179222
|
flatten.DetectCorrelatedExpressions(plan.get());
|
|
179223
179223
|
auto dependent_join = flatten.PushDownDependentJoin(move(plan));
|
|
179224
179224
|
|
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 "832a84d50"
|
|
15
|
+
#define DUCKDB_VERSION "v0.5.2-dev58"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|