duckdb 0.4.1-dev955.0 → 0.4.1-dev958.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.hpp +12 -2
- package/src/parquet-amalgamation.cpp +37437 -37437
package/package.json
CHANGED
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 "d837321f8"
|
|
15
|
+
#define DUCKDB_VERSION "v0.4.1-dev958"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|
|
@@ -5099,9 +5099,19 @@ public:
|
|
|
5099
5099
|
auto rdata = FlatVector::GetData<RIGHT_TYPE>(right);
|
|
5100
5100
|
|
|
5101
5101
|
if (LEFT_CONSTANT && ConstantVector::IsNull(left)) {
|
|
5102
|
+
if (false_sel) {
|
|
5103
|
+
for (idx_t i = 0; i < count; i++) {
|
|
5104
|
+
false_sel->set_index(i, sel->get_index(i));
|
|
5105
|
+
}
|
|
5106
|
+
}
|
|
5102
5107
|
return 0;
|
|
5103
5108
|
}
|
|
5104
5109
|
if (RIGHT_CONSTANT && ConstantVector::IsNull(right)) {
|
|
5110
|
+
if (false_sel) {
|
|
5111
|
+
for (idx_t i = 0; i < count; i++) {
|
|
5112
|
+
false_sel->set_index(i, sel->get_index(i));
|
|
5113
|
+
}
|
|
5114
|
+
}
|
|
5105
5115
|
return 0;
|
|
5106
5116
|
}
|
|
5107
5117
|
|