duckdb 0.6.2-dev708.0 → 0.6.2-dev712.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/binding.gyp CHANGED
@@ -240,7 +240,7 @@
240
240
  "src/duckdb/extension/json/yyjson/yyjson.cpp"
241
241
  ],
242
242
  "include_dirs": [
243
- "<!@(node -p \"require('node-addon-api').include\")",
243
+ "<!(node -p \"require('node-addon-api').include_dir\")",
244
244
  "src/duckdb/src/include",
245
245
  "src/duckdb/third_party/fmt/include",
246
246
  "src/duckdb/third_party/fsst",
package/binding.gyp.in CHANGED
@@ -12,7 +12,7 @@
12
12
  "${SOURCE_FILES}"
13
13
  ],
14
14
  "include_dirs": [
15
- "<!@(node -p \"require('node-addon-api').include\")",
15
+ "<!(node -p \"require('node-addon-api').include_dir\")",
16
16
  "${INCLUDE_FILES}"
17
17
  ],
18
18
  "defines": [
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
4
  "types": "./lib/duckdb.d.ts",
5
- "version": "0.6.2-dev708.0",
5
+ "version": "0.6.2-dev712.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
@@ -1,8 +1,8 @@
1
1
  #ifndef DUCKDB_VERSION
2
- #define DUCKDB_VERSION "0.6.2-dev708"
2
+ #define DUCKDB_VERSION "0.6.2-dev712"
3
3
  #endif
4
4
  #ifndef DUCKDB_SOURCE_ID
5
- #define DUCKDB_SOURCE_ID "3261ee59be"
5
+ #define DUCKDB_SOURCE_ID "4db88c5e6b"
6
6
  #endif
7
7
  #include "duckdb/function/table/system_functions.hpp"
8
8
  #include "duckdb/main/database.hpp"
@@ -27,8 +27,7 @@ DBConfig::DBConfig() {
27
27
  error_manager = make_unique<ErrorManager>();
28
28
  }
29
29
 
30
- DBConfig::DBConfig(std::unordered_map<string, string> &config_dict, bool read_only) {
31
- compression_functions = make_unique<CompressionFunctionSet>();
30
+ DBConfig::DBConfig(std::unordered_map<string, string> &config_dict, bool read_only) : DBConfig::DBConfig() {
32
31
  if (read_only) {
33
32
  options.access_mode = AccessMode::READ_ONLY;
34
33
  }