duckdb 0.4.1-dev23.0 → 0.4.1-dev26.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-dev23.0",
4
+ "version": "0.4.1-dev26.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -6039,6 +6039,7 @@ private:
6039
6039
  } // namespace duckdb
6040
6040
 
6041
6041
 
6042
+
6042
6043
  namespace duckdb {
6043
6044
 
6044
6045
  ArrowSchemaWrapper::~ArrowSchemaWrapper() {
@@ -6235,6 +6236,7 @@ unique_ptr<DataChunk> ArrowUtil::FetchChunk(QueryResult *result, idx_t chunk_siz
6235
6236
  } // namespace duckdb
6236
6237
 
6237
6238
 
6239
+
6238
6240
  namespace duckdb {
6239
6241
 
6240
6242
  void DuckDBAssertInternal(bool condition, const char *condition_name, const char *file, int linenr) {
@@ -6842,6 +6844,7 @@ uint64_t CycleCounter::Tick() const {
6842
6844
 
6843
6845
 
6844
6846
 
6847
+
6845
6848
  namespace duckdb {
6846
6849
 
6847
6850
  // LCOV_EXCL_START
@@ -13922,6 +13925,7 @@ void FileBuffer::Clear() {
13922
13925
  #undef RemoveDirectory
13923
13926
 
13924
13927
  #endif
13928
+
13925
13929
  //===----------------------------------------------------------------------===//
13926
13930
  // DuckDB
13927
13931
  //
@@ -17282,6 +17286,7 @@ public:
17282
17286
 
17283
17287
 
17284
17288
 
17289
+
17285
17290
  #include <cstdint>
17286
17291
  #include <cstdio>
17287
17292
 
@@ -30782,7 +30787,8 @@ std::vector<Match> RegexFindAll(const std::string &input, const Regex &regex) {
30782
30787
  return matches;
30783
30788
  }
30784
30789
 
30785
- } // namespace duckdb_re2//===----------------------------------------------------------------------===//
30790
+ } // namespace duckdb_re2
30791
+ //===----------------------------------------------------------------------===//
30786
30792
  // DuckDB
30787
30793
  //
30788
30794
  // duckdb/common/types/row_operations/row_aggregate.cpp
@@ -37172,6 +37178,7 @@ private:
37172
37178
 
37173
37179
 
37174
37180
 
37181
+
37175
37182
  //===----------------------------------------------------------------------===//
37176
37183
  // DuckDB
37177
37184
  //
@@ -38252,7 +38259,8 @@ unique_ptr<RenderTree> TreeRenderer::CreateTree(const Pipeline &op) {
38252
38259
  return CreateRenderTree<PipelineRenderNode>(*node);
38253
38260
  }
38254
38261
 
38255
- } // namespace duckdb//===----------------------------------------------------------------------===//
38262
+ } // namespace duckdb
38263
+ //===----------------------------------------------------------------------===//
38256
38264
  // DuckDB
38257
38265
  //
38258
38266
  // duckdb/common/types/batched_chunk_collection.hpp
@@ -39350,6 +39358,7 @@ struct ArrowAuxiliaryData : VectorAuxiliaryData {
39350
39358
  } // namespace duckdb
39351
39359
 
39352
39360
 
39361
+
39353
39362
  namespace duckdb {
39354
39363
 
39355
39364
  DataChunk::DataChunk() : count(0), capacity(STANDARD_VECTOR_SIZE) {
@@ -41677,6 +41686,7 @@ private:
41677
41686
 
41678
41687
 
41679
41688
 
41689
+
41680
41690
  namespace duckdb {
41681
41691
 
41682
41692
  HyperLogLog::HyperLogLog() : hll(nullptr) {
@@ -61615,6 +61625,7 @@ public:
61615
61625
 
61616
61626
  } // namespace duckdb
61617
61627
 
61628
+
61618
61629
  namespace duckdb {
61619
61630
 
61620
61631
  class PhysicalExecute : public PhysicalOperator {
@@ -73810,6 +73821,7 @@ public:
73810
73821
 
73811
73822
 
73812
73823
 
73824
+
73813
73825
  namespace duckdb {
73814
73826
 
73815
73827
  PhysicalCreateType::PhysicalCreateType(unique_ptr<CreateTypeInfo> info, idx_t estimated_cardinality)
@@ -95106,6 +95118,7 @@ void ListPositionFun::RegisterFunction(BuiltinFunctions &set) {
95106
95118
  } // namespace duckdb
95107
95119
 
95108
95120
 
95121
+
95109
95122
  //===----------------------------------------------------------------------===//
95110
95123
  // DuckDB
95111
95124
  //
@@ -96523,6 +96536,7 @@ void ListSortFun::RegisterFunction(BuiltinFunctions &set) {
96523
96536
 
96524
96537
 
96525
96538
 
96539
+
96526
96540
  namespace duckdb {
96527
96541
 
96528
96542
  static void ListValueFunction(DataChunk &args, ExpressionState &state, Vector &result) {
@@ -115088,6 +115102,7 @@ private:
115088
115102
 
115089
115103
 
115090
115104
 
115105
+
115091
115106
  //===----------------------------------------------------------------------===//
115092
115107
  // DuckDB
115093
115108
  //
@@ -116606,6 +116621,7 @@ bool ClientContextFileOpener::TryGetCurrentSetting(const string &key, Value &res
116606
116621
 
116607
116622
 
116608
116623
 
116624
+
116609
116625
  namespace duckdb {
116610
116626
 
116611
116627
  ClientData::ClientData(ClientContext &context) : catalog_search_path(make_unique<CatalogSearchPath>(context)) {
@@ -132163,6 +132179,7 @@ private:
132163
132179
 
132164
132180
 
132165
132181
 
132182
+
132166
132183
  namespace duckdb {
132167
132184
 
132168
132185
  using ExpressionValueInformation = FilterCombiner::ExpressionValueInformation;
@@ -135716,6 +135733,7 @@ public:
135716
135733
 
135717
135734
  } // namespace duckdb
135718
135735
 
135736
+
135719
135737
  //===----------------------------------------------------------------------===//
135720
135738
  // DuckDB
135721
135739
  //
@@ -147397,6 +147415,7 @@ unique_ptr<ParsedExpression> BetweenExpression::Deserialize(ExpressionType type,
147397
147415
 
147398
147416
 
147399
147417
 
147418
+
147400
147419
  namespace duckdb {
147401
147420
 
147402
147421
  CaseExpression::CaseExpression() : ParsedExpression(ExpressionType::CASE_EXPR, ExpressionClass::CASE) {
@@ -148597,6 +148616,7 @@ string KeywordHelper::WriteOptionallyQuoted(const string &text, char quote) {
148597
148616
 
148598
148617
 
148599
148618
 
148619
+
148600
148620
  namespace duckdb {
148601
148621
 
148602
148622
  AlterInfo::AlterInfo(AlterType type, string schema_p, string name_p)
@@ -160127,6 +160147,7 @@ unique_ptr<AlterStatement> Transformer::TransformAlterSequence(duckdb_libpgquery
160127
160147
 
160128
160148
 
160129
160149
 
160150
+
160130
160151
  namespace duckdb {
160131
160152
 
160132
160153
  unique_ptr<AlterStatement> Transformer::TransformAlter(duckdb_libpgquery::PGNode *node) {
@@ -160844,6 +160865,7 @@ unique_ptr<CreateStatement> Transformer::TransformCreateType(duckdb_libpgquery::
160844
160865
 
160845
160866
 
160846
160867
 
160868
+
160847
160869
  namespace duckdb {
160848
160870
 
160849
160871
  unique_ptr<CreateStatement> Transformer::TransformCreateView(duckdb_libpgquery::PGNode *node) {
@@ -171350,6 +171372,7 @@ BindResult ColumnAliasBinder::BindAlias(ExpressionBinder &enclosing_binder, Colu
171350
171372
 
171351
171373
  } // namespace duckdb
171352
171374
 
171375
+
171353
171376
  namespace duckdb {
171354
171377
 
171355
171378
  ConstantBinder::ConstantBinder(Binder &binder, ClientContext &context, string clause)
@@ -174867,6 +174890,7 @@ public:
174867
174890
  #endif
174868
174891
 
174869
174892
 
174893
+
174870
174894
  namespace duckdb {
174871
174895
 
174872
174896
  BlockHandle::BlockHandle(DatabaseInstance &db, block_id_t block_id_p)
@@ -178625,6 +178649,7 @@ public:
178625
178649
 
178626
178650
 
178627
178651
 
178652
+
178628
178653
  namespace duckdb {
178629
178654
 
178630
178655
  struct StringHash {
@@ -179272,6 +179297,7 @@ bool DictionaryCompressionFun::TypeIsSupported(PhysicalType type) {
179272
179297
 
179273
179298
 
179274
179299
 
179300
+
179275
179301
  namespace duckdb {
179276
179302
 
179277
179303
  //===--------------------------------------------------------------------===//
@@ -188683,6 +188709,7 @@ struct UpdateInfo {
188683
188709
 
188684
188710
  } // namespace duckdb
188685
188711
 
188712
+
188686
188713
  namespace duckdb {
188687
188714
 
188688
188715
  static UpdateSegment::initialize_update_function_t GetInitializeUpdateFunction(PhysicalType type);
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 "2d5cbf201"
15
- #define DUCKDB_VERSION "v0.4.1-dev23"
14
+ #define DUCKDB_SOURCE_ID "8e602ba1d"
15
+ #define DUCKDB_VERSION "v0.4.1-dev26"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //
@@ -401,6 +401,7 @@ DUCKDB_API void DuckDBAssertInternal(bool condition, const char *condition_name,
401
401
 
402
402
  #endif
403
403
 
404
+
404
405
  //===----------------------------------------------------------------------===//
405
406
  // DuckDB
406
407
  //
@@ -10086,6 +10087,7 @@ private:
10086
10087
 
10087
10088
  } // namespace duckdb
10088
10089
 
10090
+
10089
10091
  namespace duckdb {
10090
10092
 
10091
10093
  class ClientContext;
@@ -10124,6 +10126,7 @@ public:
10124
10126
  };
10125
10127
 
10126
10128
  } // namespace duckdb
10129
+
10127
10130
  //===----------------------------------------------------------------------===//
10128
10131
  // DuckDB
10129
10132
  //
@@ -11264,6 +11267,7 @@ private:
11264
11267
 
11265
11268
  } // namespace duckdb
11266
11269
 
11270
+
11267
11271
  //===----------------------------------------------------------------------===//
11268
11272
  // DuckDB
11269
11273
  //
@@ -15358,6 +15362,7 @@ namespace duckdb {
15358
15362
  using std::deque;
15359
15363
  }
15360
15364
 
15365
+
15361
15366
  //===----------------------------------------------------------------------===//
15362
15367
  // DuckDB
15363
15368
  //
@@ -17435,6 +17440,7 @@ private:
17435
17440
 
17436
17441
 
17437
17442
 
17443
+
17438
17444
  //===----------------------------------------------------------------------===//
17439
17445
  // DuckDB
17440
17446
  //
@@ -17489,6 +17495,7 @@ private:
17489
17495
  };
17490
17496
 
17491
17497
  } // namespace duckdb
17498
+
17492
17499
  //===----------------------------------------------------------------------===//
17493
17500
  // DuckDB
17494
17501
  //
@@ -17697,6 +17704,7 @@ public:
17697
17704
 
17698
17705
  } // namespace duckdb
17699
17706
 
17707
+
17700
17708
  namespace duckdb {
17701
17709
  class Appender;
17702
17710
  class Catalog;
@@ -18087,6 +18095,7 @@ protected:
18087
18095
 
18088
18096
 
18089
18097
 
18098
+
18090
18099
  namespace duckdb {
18091
18100
 
18092
18101
  class ChunkCollection;
@@ -18701,6 +18710,7 @@ public:
18701
18710
 
18702
18711
  } // namespace duckdb
18703
18712
 
18713
+
18704
18714
  namespace duckdb {
18705
18715
  class StorageManager;
18706
18716
  class Catalog;
@@ -18843,6 +18853,7 @@ ExternC const PfnDliHook __pfnDliFailureHook2 = duckdb_dllimport_delay_hook;
18843
18853
  }
18844
18854
  #endif
18845
18855
  #endif
18856
+
18846
18857
  //===----------------------------------------------------------------------===//
18847
18858
  // DuckDB
18848
18859
  //