duckdb 0.6.1-dev247.0 → 0.6.1-dev251.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
@@ -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.1-dev247.0",
5
+ "version": "0.6.1-dev251.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -1405,7 +1405,7 @@ CopyFunctionCatalogEntry::CopyFunctionCatalogEntry(Catalog *catalog, SchemaCatal
1405
1405
  //===----------------------------------------------------------------------===//
1406
1406
  // DuckDB
1407
1407
  //
1408
- // duckdb/common/bit_operations.hpp
1408
+ // duckdb/common/radix.hpp
1409
1409
  //
1410
1410
  //
1411
1411
  //===----------------------------------------------------------------------===//
@@ -39601,6 +39601,9 @@ SortLayout SortLayout::GetPrefixComparisonLayout(idx_t num_prefix_cols) const {
39601
39601
  }
39602
39602
 
39603
39603
  LocalSortState::LocalSortState() : initialized(false) {
39604
+ if (!Radix::IsLittleEndian()) {
39605
+ throw NotImplementedException("Sorting is not supported on big endian architectures");
39606
+ }
39604
39607
  }
39605
39608
 
39606
39609
  void LocalSortState::Initialize(GlobalSortState &global_sort_state, BufferManager &buffer_manager_p) {
@@ -60688,6 +60691,9 @@ ART::ART(const vector<column_t> &column_ids, TableIOManager &table_io_manager,
60688
60691
  DatabaseInstance &db, idx_t block_id, idx_t block_offset)
60689
60692
  : Index(IndexType::ART, table_io_manager, column_ids, unbound_expressions, constraint_type), db(db),
60690
60693
  estimated_art_size(0), estimated_key_size(16) {
60694
+ if (!Radix::IsLittleEndian()) {
60695
+ throw NotImplementedException("ART indexes are not supported on big endian architectures");
60696
+ }
60691
60697
  if (block_id != DConstants::INVALID_INDEX) {
60692
60698
  tree = Node::Deserialize(*this, block_id, block_offset);
60693
60699
  } else {
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 "aceeb1c1a8"
15
- #define DUCKDB_VERSION "v0.6.1-dev247"
14
+ #define DUCKDB_SOURCE_ID "c81d35f5a4"
15
+ #define DUCKDB_VERSION "v0.6.1-dev251"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //