duckdb 0.4.1-dev1341.0 → 0.4.1-dev1344.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-dev1341.0",
4
+ "version": "0.4.1-dev1344.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -176108,7 +176108,7 @@ BindResult ConstantBinder::BindExpression(unique_ptr<ParsedExpression> *expr_ptr
176108
176108
  }
176109
176109
 
176110
176110
  string ConstantBinder::UnsupportedAggregateMessage() {
176111
- return clause + "cannot contain aggregates!";
176111
+ return clause + " cannot contain aggregates!";
176112
176112
  }
176113
176113
 
176114
176114
  } // namespace duckdb
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 "bf3cc3c8a"
15
- #define DUCKDB_VERSION "v0.4.1-dev1341"
14
+ #define DUCKDB_SOURCE_ID "457bc43db"
15
+ #define DUCKDB_VERSION "v0.4.1-dev1344"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //
@@ -25727,7 +25727,15 @@ public:
25727
25727
  child_list += ")";
25728
25728
  return "(" + in_child + op_type + child_list + ")";
25729
25729
  }
25730
- case ExpressionType::OPERATOR_NOT:
25730
+ case ExpressionType::OPERATOR_NOT: {
25731
+ string result = "(";
25732
+ result += ExpressionTypeToString(entry.type);
25733
+ result += " ";
25734
+ result += StringUtil::Join(entry.children, entry.children.size(), ", ",
25735
+ [](const unique_ptr<BASE> &child) { return child->ToString(); });
25736
+ result += ")";
25737
+ return result;
25738
+ }
25731
25739
  case ExpressionType::GROUPING_FUNCTION:
25732
25740
  case ExpressionType::OPERATOR_COALESCE: {
25733
25741
  string result = ExpressionTypeToString(entry.type);