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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
- "version": "0.4.1-dev1131.0",
4
+ "version": "0.4.1-dev1155.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
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 "67f1ed1a2"
15
- #define DUCKDB_VERSION "v0.4.1-dev1131"
14
+ #define DUCKDB_SOURCE_ID "0b45a7efb"
15
+ #define DUCKDB_VERSION "v0.4.1-dev1155"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //