Skip to content

Commit 76c2274

Browse files
committed
vendor: Update vendored sources to duckdb/duckdb@ce69651
fsst: Avoid to propagate alignment information in FSST_UNALIGNED_STORE (duckdb/duckdb#17094) [Dev] Automatically re-execute when calling `__arrow_c_stream__` on an already-consumed-result (duckdb/duckdb#17087)
1 parent 24aee08 commit 76c2274

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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-dev2391"
2+
#define DUCKDB_PATCH_VERSION "0-dev2395"
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-dev2391"
11+
#define DUCKDB_VERSION "v1.3.0-dev2395"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "b19550535b"
14+
#define DUCKDB_SOURCE_ID "ce69651242"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

src/duckdb/third_party/fsst/fsst.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ duckdb_fsst_decompress(
172172
unsigned long long*__restrict__ symbol = (unsigned long long* __restrict__) decoder->symbol;
173173
size_t code, posOut = 0, posIn = 0;
174174
#ifndef FSST_MUST_ALIGN /* defining on platforms that require aligned memory access may help their performance */
175-
#define FSST_UNALIGNED_STORE(dst,src) memcpy((unsigned long long*) (dst), &(src), sizeof(unsigned long long))
175+
#define FSST_UNALIGNED_STORE(dst,src) memcpy((void*) (dst), &(src), sizeof(unsigned long long))
176176
#if defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
177177
while (posOut+32 <= size && posIn+4 <= lenIn) {
178178
unsigned int nextBlock, escapeMask;

0 commit comments

Comments
 (0)