duckdb 0.4.1-dev434.0 → 0.4.1-dev436.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 +11 -11
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +26877 -26877
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -295858,17 +295858,17 @@ int mbedtls_pk_setup_rsa_alt( mbedtls_pk_context *ctx, void * key,
|
|
|
295858
295858
|
*/
|
|
295859
295859
|
size_t mbedtls_pk_get_bitlen( const mbedtls_pk_context *ctx );
|
|
295860
295860
|
|
|
295861
|
-
|
|
295862
|
-
* \brief Get the length in bytes of the underlying key
|
|
295863
|
-
*
|
|
295864
|
-
* \param ctx The context to query. It must have been initialized.
|
|
295865
|
-
*
|
|
295866
|
-
* \return Key length in bytes, or 0 on error
|
|
295867
|
-
*/
|
|
295868
|
-
static inline size_t mbedtls_pk_get_len( const mbedtls_pk_context *ctx )
|
|
295869
|
-
{
|
|
295870
|
-
return( ( mbedtls_pk_get_bitlen( ctx ) + 7 ) / 8 );
|
|
295871
|
-
}
|
|
295861
|
+
///**
|
|
295862
|
+
// * \brief Get the length in bytes of the underlying key
|
|
295863
|
+
// *
|
|
295864
|
+
// * \param ctx The context to query. It must have been initialized.
|
|
295865
|
+
// *
|
|
295866
|
+
// * \return Key length in bytes, or 0 on error
|
|
295867
|
+
// */
|
|
295868
|
+
//static inline size_t mbedtls_pk_get_len( const mbedtls_pk_context *ctx )
|
|
295869
|
+
//{
|
|
295870
|
+
// return( ( mbedtls_pk_get_bitlen( ctx ) + 7 ) / 8 );
|
|
295871
|
+
//}
|
|
295872
295872
|
|
|
295873
295873
|
/**
|
|
295874
295874
|
* \brief Tell if a context can do the operation given by type
|
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.4.1-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "3d1471471"
|
|
15
|
+
#define DUCKDB_VERSION "v0.4.1-dev436"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|