Skip to content

Commit 75e5d9a

Browse files
committed
vendor: Update vendored sources to duckdb/duckdb@779b00c
Parquet FLOAT16 - fix cast (duckdb/duckdb#16580)
1 parent 5dd3b16 commit 75e5d9a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/duckdb/extension/parquet/parquet_float16.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ float Float16ToFloat32(const uint16_t &float16_value) {
3939
float32_value = (sign << 31) | ((exponent + (127 - 15)) << 23) | (fraction << 13);
4040
}
4141

42-
return *((float *)&float32_value);
42+
return *reinterpret_cast<float *>(&float32_value);
4343
}
4444

4545
} // namespace duckdb

src/duckdb/src/function/table/version/pragma_version.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ifndef DUCKDB_PATCH_VERSION
2-
#define DUCKDB_PATCH_VERSION "0-dev1133"
2+
#define DUCKDB_PATCH_VERSION "0-dev1135"
33
#endif
44
#ifndef DUCKDB_MINOR_VERSION
55
#define DUCKDB_MINOR_VERSION 3
@@ -8,10 +8,10 @@
88
#define DUCKDB_MAJOR_VERSION 1
99
#endif
1010
#ifndef DUCKDB_VERSION
11-
#define DUCKDB_VERSION "v1.3.0-dev1133"
11+
#define DUCKDB_VERSION "v1.3.0-dev1135"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "4d7af49166"
14+
#define DUCKDB_SOURCE_ID "779b00c458"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

0 commit comments

Comments
 (0)