duckdb 0.6.1-dev0.0 → 0.6.1-dev12.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 +4 -4
- package/src/duckdb.hpp +4 -2
- package/src/parquet-amalgamation.cpp +24894 -24894
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -106724,16 +106724,16 @@ struct StructDatePart {
|
|
|
106724
106724
|
const auto idx = rdata.sel->get_index(i);
|
|
106725
106725
|
if (arg_valid.RowIsValid(idx)) {
|
|
106726
106726
|
if (Value::IsFinite(tdata[idx])) {
|
|
106727
|
-
DatePart::StructOperator::Operation(part_values.data(), tdata[idx],
|
|
106727
|
+
DatePart::StructOperator::Operation(part_values.data(), tdata[idx], i, part_mask);
|
|
106728
106728
|
} else {
|
|
106729
106729
|
for (auto &child_entry : child_entries) {
|
|
106730
|
-
FlatVector::Validity(*child_entry).SetInvalid(
|
|
106730
|
+
FlatVector::Validity(*child_entry).SetInvalid(i);
|
|
106731
106731
|
}
|
|
106732
106732
|
}
|
|
106733
106733
|
} else {
|
|
106734
|
-
res_valid.SetInvalid(
|
|
106734
|
+
res_valid.SetInvalid(i);
|
|
106735
106735
|
for (auto &child_entry : child_entries) {
|
|
106736
|
-
FlatVector::Validity(*child_entry).SetInvalid(
|
|
106736
|
+
FlatVector::Validity(*child_entry).SetInvalid(i);
|
|
106737
106737
|
}
|
|
106738
106738
|
}
|
|
106739
106739
|
}
|
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.
|
|
14
|
+
#define DUCKDB_SOURCE_ID "7fbaefc8a1"
|
|
15
|
+
#define DUCKDB_VERSION "v0.6.1-dev12"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|
|
@@ -19440,6 +19440,8 @@ DUCKDB_API const char *duckdb_result_error(duckdb_result *result);
|
|
|
19440
19440
|
/*!
|
|
19441
19441
|
Fetches a data chunk from the duckdb_result. This function should be called repeatedly until the result is exhausted.
|
|
19442
19442
|
|
|
19443
|
+
The result must be destroyed with `duckdb_destroy_data_chunk`.
|
|
19444
|
+
|
|
19443
19445
|
This function supersedes all `duckdb_value` functions, as well as the `duckdb_column_data` and `duckdb_nullmask_data`
|
|
19444
19446
|
functions. It results in significantly better performance, and should be preferred in newer code-bases.
|
|
19445
19447
|
|