duckdb 0.4.1-dev399.0 → 0.4.1-dev429.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/database.cpp +43 -9
- package/src/duckdb.cpp +50099 -22817
- package/src/duckdb.hpp +4 -2
- package/src/parquet-amalgamation.cpp +36920 -36920
- package/test/extension.test.js +1 -1
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 "bdaf5efab"
|
|
15
|
+
#define DUCKDB_VERSION "v0.4.1-dev429"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|
|
@@ -18889,6 +18889,8 @@ public:
|
|
|
18889
18889
|
bool use_direct_io = false;
|
|
18890
18890
|
//! Whether extensions should be loaded on start-up
|
|
18891
18891
|
bool load_extensions = true;
|
|
18892
|
+
//! Whether unsigned extensions should be loaded
|
|
18893
|
+
bool allow_unsigned_extensions = false;
|
|
18892
18894
|
//! The FileSystem to use, can be overwritten to allow for injecting custom file systems for testing purposes (e.g.
|
|
18893
18895
|
//! RamFS or something similar)
|
|
18894
18896
|
unique_ptr<FileSystem> file_system;
|