duckdb 0.4.1-dev1077.0 → 0.4.1-dev1084.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-dev1077.0",
4
+ "version": "0.4.1-dev1084.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -182703,6 +182703,8 @@ bool BitpackingFun::TypeIsSupported(PhysicalType type) {
182703
182703
 
182704
182704
 
182705
182705
 
182706
+
182707
+
182706
182708
  //===----------------------------------------------------------------------===//
182707
182709
  // DuckDB
182708
182710
  //
@@ -182955,26 +182957,8 @@ public:
182955
182957
 
182956
182958
 
182957
182959
 
182958
-
182959
182960
  namespace duckdb {
182960
182961
 
182961
- struct StringHash {
182962
- std::size_t operator()(const string_t &k) const {
182963
- return Hash(k);
182964
- }
182965
- };
182966
-
182967
- struct StringEquality {
182968
- bool operator()(const string_t &a, const string_t &b) const {
182969
- return Equals::Operation(a, b);
182970
- }
182971
- };
182972
-
182973
- template <typename T>
182974
- using string_map_t = unordered_map<string_t, T, StringHash, StringEquality>;
182975
-
182976
- using string_set_t = unordered_set<string_t, StringHash, StringEquality>;
182977
-
182978
182962
  // Abstract class for keeping compression state either for compression or size analysis
182979
182963
  class DictionaryCompressionState : public CompressionState {
182980
182964
  public:
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 "c6b0e54fa"
15
- #define DUCKDB_VERSION "v0.4.1-dev1077"
14
+ #define DUCKDB_SOURCE_ID "c28ac6e22"
15
+ #define DUCKDB_VERSION "v0.4.1-dev1084"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //
@@ -23408,6 +23408,42 @@ public:
23408
23408
  const LogicalType &GetType() const;
23409
23409
  };
23410
23410
 
23411
+ } // namespace duckdb
23412
+ //===----------------------------------------------------------------------===//
23413
+ // DuckDB
23414
+ //
23415
+ // duckdb/common/string_map_set.hpp
23416
+ //
23417
+ //
23418
+ //===----------------------------------------------------------------------===//
23419
+
23420
+
23421
+
23422
+
23423
+
23424
+
23425
+
23426
+
23427
+
23428
+ namespace duckdb {
23429
+
23430
+ struct StringHash {
23431
+ std::size_t operator()(const string_t &k) const {
23432
+ return Hash(k);
23433
+ }
23434
+ };
23435
+
23436
+ struct StringEquality {
23437
+ bool operator()(const string_t &a, const string_t &b) const {
23438
+ return Equals::Operation(a, b);
23439
+ }
23440
+ };
23441
+
23442
+ template <typename T>
23443
+ using string_map_t = unordered_map<string_t, T, StringHash, StringEquality>;
23444
+
23445
+ using string_set_t = unordered_set<string_t, StringHash, StringEquality>;
23446
+
23411
23447
  } // namespace duckdb
23412
23448
  //===----------------------------------------------------------------------===//
23413
23449
  // DuckDB