duckdb 0.4.1-dev2385.0 → 0.4.1-dev2388.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-dev2385.0",
4
+ "version": "0.4.1-dev2388.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -208171,7 +208171,7 @@ void StatementVerifier::CheckExpressions(const StatementVerifier &other) const {
208171
208171
  for (idx_t i = 0; i < expr_count; i++) {
208172
208172
  D_ASSERT(!select_list[i]->Equals(nullptr));
208173
208173
  // Run the ToString, to verify that it doesn't crash
208174
- auto str = select_list[i]->ToString();
208174
+ select_list[i]->ToString();
208175
208175
 
208176
208176
  if (select_list[i]->HasSubquery()) {
208177
208177
  continue;
@@ -208183,11 +208183,6 @@ void StatementVerifier::CheckExpressions(const StatementVerifier &other) const {
208183
208183
  D_ASSERT(select_list[i]->Hash() == other.select_list[i]->Hash());
208184
208184
 
208185
208185
  other.select_list[i]->Verify();
208186
-
208187
- // ToString round trip
208188
- auto parsed_list = Parser::ParseExpressionList(str);
208189
- D_ASSERT(parsed_list.size() == 1);
208190
- D_ASSERT(parsed_list[0]->Equals(select_list[i].get()));
208191
208186
  }
208192
208187
  }
208193
208188
  #endif
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 "94920472d"
15
- #define DUCKDB_VERSION "v0.4.1-dev2385"
14
+ #define DUCKDB_SOURCE_ID "3ea4281d1"
15
+ #define DUCKDB_VERSION "v0.4.1-dev2388"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //