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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
- "version": "0.4.1-dev434.0",
4
+ "version": "0.4.1-dev436.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
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 "22fd9758a"
15
- #define DUCKDB_VERSION "v0.4.1-dev434"
14
+ #define DUCKDB_SOURCE_ID "3d1471471"
15
+ #define DUCKDB_VERSION "v0.4.1-dev436"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //