duckdb 0.4.1-dev790.0 → 0.4.1-dev799.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 +1 -1
- package/src/duckdb.cpp +1 -1
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +37327 -37327
package/package.json
CHANGED
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
|
-
|
|
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 "
|
|
15
|
-
#define DUCKDB_VERSION "v0.4.1-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "eba10adcd"
|
|
15
|
+
#define DUCKDB_VERSION "v0.4.1-dev799"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|