duckdb 0.4.1-dev2142.0 → 0.4.1-dev2152.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 +1 -9
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +37236 -37236
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -58623,15 +58623,7 @@ void ExpressionExecutor::Execute(const BoundReferenceExpression &expr, Expressio
|
|
|
58623
58623
|
const SelectionVector *sel, idx_t count, Vector &result) {
|
|
58624
58624
|
D_ASSERT(expr.index != DConstants::INVALID_INDEX);
|
|
58625
58625
|
D_ASSERT(expr.index < chunk->ColumnCount());
|
|
58626
|
-
|
|
58627
|
-
// Input Vector and result Vector should not be the same
|
|
58628
|
-
auto input_aux = chunk->data[expr.index].GetAuxiliary();
|
|
58629
|
-
auto input_buffer = chunk->data[expr.index].GetBuffer();
|
|
58630
|
-
auto result_aux = result.GetAuxiliary();
|
|
58631
|
-
auto result_buffer = result.GetBuffer();
|
|
58632
|
-
D_ASSERT(input_aux != result_aux || input_aux == nullptr);
|
|
58633
|
-
D_ASSERT(input_buffer != result_buffer || input_buffer == nullptr);
|
|
58634
|
-
#endif
|
|
58626
|
+
|
|
58635
58627
|
if (sel) {
|
|
58636
58628
|
result.Slice(chunk->data[expr.index], *sel, count);
|
|
58637
58629
|
} else {
|
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.4.1-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "cb24a1170"
|
|
15
|
+
#define DUCKDB_VERSION "v0.4.1-dev2152"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|