duckdb 0.3.5-dev1353.0 → 0.3.5-dev1355.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.3.5-dev1353.0",
4
+ "version": "0.3.5-dev1355.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -115880,6 +115880,7 @@ string ClientContext::VerifyQuery(ClientContextLock &lock, const string &query,
115880
115880
  } catch (std::exception &ex) {
115881
115881
  results.push_back(make_unique<MaterializedQueryResult>(ex.what()));
115882
115882
  }
115883
+ interrupted = false;
115883
115884
  }
115884
115885
  config.enable_optimizer = optimizer_enabled;
115885
115886
 
@@ -115890,6 +115891,7 @@ string ClientContext::VerifyQuery(ClientContextLock &lock, const string &query,
115890
115891
  try {
115891
115892
  RunStatementInternal(lock, explain_q, move(explain_stmt), false, false);
115892
115893
  } catch (std::exception &ex) { // LCOV_EXCL_START
115894
+ interrupted = false;
115893
115895
  return "EXPLAIN failed but query did not (" + string(ex.what()) + ")";
115894
115896
  } // LCOV_EXCL_STOP
115895
115897
  }
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 "60865b7a0"
15
- #define DUCKDB_VERSION "v0.3.5-dev1353"
14
+ #define DUCKDB_SOURCE_ID "1fe615680"
15
+ #define DUCKDB_VERSION "v0.3.5-dev1355"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //