duckdb 0.4.1-dev1131.0 → 0.4.1-dev1155.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 +3 -5
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +25599 -25599
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -2264,7 +2264,7 @@ public:
|
|
|
2264
2264
|
}
|
|
2265
2265
|
|
|
2266
2266
|
template <class T, class RETURN_TYPE = unique_ptr<T>, typename... ARGS>
|
|
2267
|
-
RETURN_TYPE ReadSerializable(RETURN_TYPE default_value, ARGS &&...args) {
|
|
2267
|
+
RETURN_TYPE ReadSerializable(RETURN_TYPE default_value, ARGS &&... args) {
|
|
2268
2268
|
if (field_count >= max_field_count) {
|
|
2269
2269
|
// field is not there, read the default value
|
|
2270
2270
|
return default_value;
|
|
@@ -2286,7 +2286,7 @@ public:
|
|
|
2286
2286
|
}
|
|
2287
2287
|
|
|
2288
2288
|
template <class T, class RETURN_TYPE = unique_ptr<T>, typename... ARGS>
|
|
2289
|
-
RETURN_TYPE ReadRequiredSerializable(ARGS &&...args) {
|
|
2289
|
+
RETURN_TYPE ReadRequiredSerializable(ARGS &&... args) {
|
|
2290
2290
|
if (field_count >= max_field_count) {
|
|
2291
2291
|
// field is not there, read the default value
|
|
2292
2292
|
throw SerializationException("Attempting to read mandatory field, but field is missing");
|
|
@@ -150465,9 +150465,7 @@ namespace duckdb {
|
|
|
150465
150465
|
|
|
150466
150466
|
ComparisonExpression::ComparisonExpression(ExpressionType type, unique_ptr<ParsedExpression> left,
|
|
150467
150467
|
unique_ptr<ParsedExpression> right)
|
|
150468
|
-
: ParsedExpression(type, ExpressionClass::COMPARISON) {
|
|
150469
|
-
this->left = move(left);
|
|
150470
|
-
this->right = move(right);
|
|
150468
|
+
: ParsedExpression(type, ExpressionClass::COMPARISON), left(move(left)), right(move(right)) {
|
|
150471
150469
|
}
|
|
150472
150470
|
|
|
150473
150471
|
string ComparisonExpression::ToString() const {
|
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 "0b45a7efb"
|
|
15
|
+
#define DUCKDB_VERSION "v0.4.1-dev1155"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|