duckdb 0.5.2-dev518.0 → 0.5.2-dev521.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 -6
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +37515 -37515
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -46801,12 +46801,12 @@ hugeint_t UUID::GenerateRandomUUID(RandomEngine &engine) {
|
|
|
46801
46801
|
result.upper = 0;
|
|
46802
46802
|
result.upper |= ((int64_t)bytes[0] << 56);
|
|
46803
46803
|
result.upper |= ((int64_t)bytes[1] << 48);
|
|
46804
|
-
result.upper |= ((int64_t)bytes[
|
|
46805
|
-
result.upper |= ((int64_t)bytes[
|
|
46806
|
-
result.upper |= ((int64_t)bytes[
|
|
46807
|
-
result.upper |= ((int64_t)bytes[
|
|
46808
|
-
result.upper |= ((int64_t)bytes[
|
|
46809
|
-
result.upper |= bytes[
|
|
46804
|
+
result.upper |= ((int64_t)bytes[2] << 40);
|
|
46805
|
+
result.upper |= ((int64_t)bytes[3] << 32);
|
|
46806
|
+
result.upper |= ((int64_t)bytes[4] << 24);
|
|
46807
|
+
result.upper |= ((int64_t)bytes[5] << 16);
|
|
46808
|
+
result.upper |= ((int64_t)bytes[6] << 8);
|
|
46809
|
+
result.upper |= bytes[7];
|
|
46810
46810
|
result.lower = 0;
|
|
46811
46811
|
result.lower |= ((uint64_t)bytes[8] << 56);
|
|
46812
46812
|
result.lower |= ((uint64_t)bytes[9] << 48);
|
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 "69399f8aa"
|
|
15
|
+
#define DUCKDB_VERSION "v0.5.2-dev521"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|