duckdb 0.5.2-dev2.0 → 0.5.2-dev7.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 +6 -2
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +36745 -36745
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -43588,12 +43588,16 @@ hash_t Hash(hugeint_t val) {
|
|
|
43588
43588
|
|
|
43589
43589
|
template <>
|
|
43590
43590
|
hash_t Hash(float val) {
|
|
43591
|
-
|
|
43591
|
+
static_assert(sizeof(float) == sizeof(uint32_t), "");
|
|
43592
|
+
uint32_t uval = *((uint32_t *)&val);
|
|
43593
|
+
return murmurhash64(uval);
|
|
43592
43594
|
}
|
|
43593
43595
|
|
|
43594
43596
|
template <>
|
|
43595
43597
|
hash_t Hash(double val) {
|
|
43596
|
-
|
|
43598
|
+
static_assert(sizeof(double) == sizeof(uint64_t), "");
|
|
43599
|
+
uint64_t uval = *((uint64_t *)&val);
|
|
43600
|
+
return murmurhash64(uval);
|
|
43597
43601
|
}
|
|
43598
43602
|
|
|
43599
43603
|
template <>
|
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.5.2-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "3056dda64"
|
|
15
|
+
#define DUCKDB_VERSION "v0.5.2-dev7"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|