Skip to content

Commit bbf044a

Browse files
committed
vendor: Update vendored sources to duckdb/duckdb@20ae352
Fix sign-compare compilation warning (duckdb/duckdb#15672) Fix Python dictionary key is repeated (duckdb/duckdb#15663)
1 parent b0093bc commit bbf044a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/duckdb/src/common/types/varint.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void Varint::Verify(const string_t &input) {
3434
// No bytes between 4 and end can be 0, unless total size == 4
3535
if (varint_bytes > 4) {
3636
if (is_negative) {
37-
if (~varint_ptr[3] == 0) {
37+
if (static_cast<data_t>(~varint_ptr[3]) == 0) {
3838
throw InternalException("Invalid top data bytes set to 0 for VARINT values");
3939
}
4040
} else {

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 "4-dev4492"
2+
#define DUCKDB_PATCH_VERSION "4-dev4496"
33
#endif
44
#ifndef DUCKDB_MINOR_VERSION
55
#define DUCKDB_MINOR_VERSION 1
@@ -8,10 +8,10 @@
88
#define DUCKDB_MAJOR_VERSION 1
99
#endif
1010
#ifndef DUCKDB_VERSION
11-
#define DUCKDB_VERSION "v1.1.4-dev4492"
11+
#define DUCKDB_VERSION "v1.1.4-dev4496"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "89bcc3e2ce"
14+
#define DUCKDB_SOURCE_ID "20ae352efc"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

0 commit comments

Comments
 (0)