duckdb 0.4.1-dev790.0 → 0.4.1-dev792.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-dev790.0",
4
+ "version": "0.4.1-dev792.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -93147,7 +93147,7 @@ static unique_ptr<BaseStatistics> DateTruncStatistics(vector<unique_ptr<BaseStat
93147
93147
  auto min = nstats.min.GetValueUnsafe<TA>();
93148
93148
  auto max = nstats.max.GetValueUnsafe<TA>();
93149
93149
  if (min > max) {
93150
- throw InternalException("Invalid DATETRUNC child statistics");
93150
+ return nullptr;
93151
93151
  }
93152
93152
 
93153
93153
  // Infinite values are unmodified
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 "d163f7ee3"
15
- #define DUCKDB_VERSION "v0.4.1-dev790"
14
+ #define DUCKDB_SOURCE_ID "d2b7d8ac6"
15
+ #define DUCKDB_VERSION "v0.4.1-dev792"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //