Skip to content

Commit 9eeae94

Browse files
committed
vendor: Update vendored sources to duckdb/duckdb@128f54e
Bump mbedtls to 3.6.2 and re-apply patches (duckdb/duckdb#16485)
1 parent c6fd869 commit 9eeae94

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+25097
-19794
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-dev1223"
2+
#define DUCKDB_PATCH_VERSION "0-dev1240"
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-dev1223"
11+
#define DUCKDB_VERSION "v1.3.0-dev1240"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "81a9e52630"
14+
#define DUCKDB_SOURCE_ID "128f54e427"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

src/duckdb/third_party/mbedtls/include/mbedtls/aes.h

Lines changed: 510 additions & 519 deletions
Large diffs are not rendered by default.

src/duckdb/third_party/mbedtls/include/mbedtls/aria.h

Lines changed: 1 addition & 358 deletions
Large diffs are not rendered by default.

src/duckdb/third_party/mbedtls/include/mbedtls/asn1.h

Lines changed: 95 additions & 86 deletions
Large diffs are not rendered by default.

src/duckdb/third_party/mbedtls/include/mbedtls/asn1write.h

Lines changed: 390 additions & 1 deletion
Large diffs are not rendered by default.

src/duckdb/third_party/mbedtls/include/mbedtls/base64.h

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,7 @@
55
*/
66
/*
77
* Copyright The Mbed TLS Contributors
8-
* SPDX-License-Identifier: Apache-2.0
9-
*
10-
* Licensed under the Apache License, Version 2.0 (the "License"); you may
11-
* not use this file except in compliance with the License.
12-
* You may obtain a copy of the License at
13-
*
14-
* http://www.apache.org/licenses/LICENSE-2.0
15-
*
16-
* Unless required by applicable law or agreed to in writing, software
17-
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18-
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19-
* See the License for the specific language governing permissions and
20-
* limitations under the License.
8+
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
219
*/
2210
#ifndef MBEDTLS_BASE64_H
2311
#define MBEDTLS_BASE64_H
@@ -54,8 +42,8 @@ extern "C" {
5442
* \note Call this function with dlen = 0 to obtain the
5543
* required buffer size in *olen
5644
*/
57-
int mbedtls_base64_encode( unsigned char *dst, size_t dlen, size_t *olen,
58-
const unsigned char *src, size_t slen );
45+
int mbedtls_base64_encode(unsigned char *dst, size_t dlen, size_t *olen,
46+
const unsigned char *src, size_t slen);
5947

6048
/**
6149
* \brief Decode a base64-formatted buffer
@@ -74,16 +62,16 @@ int mbedtls_base64_encode( unsigned char *dst, size_t dlen, size_t *olen,
7462
* \note Call this function with *dst = NULL or dlen = 0 to obtain
7563
* the required buffer size in *olen
7664
*/
77-
int mbedtls_base64_decode( unsigned char *dst, size_t dlen, size_t *olen,
78-
const unsigned char *src, size_t slen );
65+
int mbedtls_base64_decode(unsigned char *dst, size_t dlen, size_t *olen,
66+
const unsigned char *src, size_t slen);
7967

8068
#if defined(MBEDTLS_SELF_TEST)
8169
/**
8270
* \brief Checkup routine
8371
*
8472
* \return 0 if successful, or 1 if the test failed
8573
*/
86-
int mbedtls_base64_self_test( int verbose );
74+
int mbedtls_base64_self_test(int verbose);
8775

8876
#endif /* MBEDTLS_SELF_TEST */
8977

0 commit comments

Comments
 (0)