duckdb 0.6.1-dev149.0 → 0.6.1-dev151.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 -1
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +37611 -37611
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -200983,10 +200983,11 @@ unique_ptr<LogicalOperator> FlattenDependentJoins::PushDownDependentJoinInternal
|
|
|
200983
200983
|
// we reached a node without correlated expressions
|
|
200984
200984
|
// we can eliminate the dependent join now and create a simple cross product
|
|
200985
200985
|
// now create the duplicate eliminated scan for this node
|
|
200986
|
+
auto left_columns = plan->GetColumnBindings().size();
|
|
200986
200987
|
auto delim_index = binder.GenerateTableIndex();
|
|
200987
200988
|
this->base_binding = ColumnBinding(delim_index, 0);
|
|
200988
200989
|
this->delim_offset = 0;
|
|
200989
|
-
this->data_offset =
|
|
200990
|
+
this->data_offset = left_columns;
|
|
200990
200991
|
auto delim_scan = make_unique<LogicalDelimGet>(delim_index, delim_types);
|
|
200991
200992
|
return LogicalCrossProduct::Create(move(plan), move(delim_scan));
|
|
200992
200993
|
}
|
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.1-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "0a5019f07c"
|
|
15
|
+
#define DUCKDB_VERSION "v0.6.1-dev151"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|