duckdb 0.4.1-dev2154.0 → 0.4.1-dev2174.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-dev2154.0",
4
+ "version": "0.4.1-dev2174.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -127700,13 +127700,6 @@ bool DatabaseInstance::IsInvalidated() {
127700
127700
  #define TPCDS_STATICALLY_LOADED false
127701
127701
  #endif
127702
127702
 
127703
- #if defined(BUILD_SUBSTRAIT_EXTENSION) && !defined(DISABLE_BUILTIN_EXTENSIONS)
127704
- #define SUBSTRAIT_STATICALLY_LOADED true
127705
- #include "substrait-extension.hpp"
127706
- #else
127707
- #define SUBSTRAIT_STATICALLY_LOADED false
127708
- #endif
127709
-
127710
127703
  #if defined(BUILD_FTS_EXTENSION) && !defined(DISABLE_BUILTIN_EXTENSIONS)
127711
127704
  #define FTS_STATICALLY_LOADED true
127712
127705
  #include "fts-extension.hpp"
@@ -127750,7 +127743,6 @@ static DefaultExtension internal_extensions[] = {
127750
127743
  {"parquet", "Adds support for reading and writing parquet files", PARQUET_STATICALLY_LOADED},
127751
127744
  {"tpch", "Adds TPC-H data generation and query support", TPCH_STATICALLY_LOADED},
127752
127745
  {"tpcds", "Adds TPC-DS data generation and query support", TPCDS_STATICALLY_LOADED},
127753
- {"substrait", "Adds support for the Substrait integration", SUBSTRAIT_STATICALLY_LOADED},
127754
127746
  {"fts", "Adds support for Full-Text Search Indexes", FTS_STATICALLY_LOADED},
127755
127747
  {"httpfs", "Adds support for reading and writing files over a HTTP(S) connection", HTTPFS_STATICALLY_LOADED},
127756
127748
  {"json", "Adds support for JSON operations", JSON_STATICALLY_LOADED},
@@ -127774,8 +127766,8 @@ DefaultExtension ExtensionHelper::GetDefaultExtension(idx_t index) {
127774
127766
  // Load Statically Compiled Extension
127775
127767
  //===--------------------------------------------------------------------===//
127776
127768
  void ExtensionHelper::LoadAllExtensions(DuckDB &db) {
127777
- unordered_set<string> extensions {"parquet", "icu", "tpch", "tpcds", "fts", "httpfs",
127778
- "substrait", "visualizer", "json", "excel", "sqlsmith"};
127769
+ unordered_set<string> extensions {"parquet", "icu", "tpch", "tpcds", "fts",
127770
+ "httpfs", "visualizer", "json", "excel", "sqlsmith"};
127779
127771
  for (auto &ext : extensions) {
127780
127772
  LoadExtensionInternal(db, ext, true);
127781
127773
  }
@@ -127823,14 +127815,6 @@ ExtensionLoadResult ExtensionHelper::LoadExtensionInternal(DuckDB &db, const std
127823
127815
  #else
127824
127816
  // icu extension required but not build: skip this test
127825
127817
  return ExtensionLoadResult::NOT_LOADED;
127826
- #endif
127827
- } else if (extension == "substrait") {
127828
- #if SUBSTRAIT_STATICALLY_LOADED
127829
-
127830
- db.LoadExtension<SubstraitExtension>();
127831
- #else
127832
- // substrait extension required but not build: skip this test
127833
- return ExtensionLoadResult::NOT_LOADED;
127834
127818
  #endif
127835
127819
  } else if (extension == "tpcds") {
127836
127820
  #if TPCDS_STATICALLY_LOADED
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 "99be6e743"
15
- #define DUCKDB_VERSION "v0.4.1-dev2154"
14
+ #define DUCKDB_SOURCE_ID "f1d38671c"
15
+ #define DUCKDB_VERSION "v0.4.1-dev2174"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //