duckdb 0.5.2-dev16.0 → 0.5.2-dev18.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.5.2-dev16.0",
4
+ "version": "0.5.2-dev18.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
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 "d41a2e811"
15
- #define DUCKDB_VERSION "v0.5.2-dev16"
14
+ #define DUCKDB_SOURCE_ID "09248843b"
15
+ #define DUCKDB_VERSION "v0.5.2-dev18"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //
@@ -11416,6 +11416,7 @@ public:
11416
11416
  DUCKDB_API ~ColumnDataCollection();
11417
11417
 
11418
11418
  public:
11419
+ //! The types of columns in the ColumnDataCollection
11419
11420
  DUCKDB_API vector<LogicalType> &Types() {
11420
11421
  return types;
11421
11422
  }
@@ -14409,7 +14410,7 @@ public:
14409
14410
  ChunkCollection(Allocator &allocator);
14410
14411
  ChunkCollection(ClientContext &context);
14411
14412
 
14412
- //! The amount of columns in the ChunkCollection
14413
+ //! The types of columns in the ChunkCollection
14413
14414
  DUCKDB_API vector<LogicalType> &Types() {
14414
14415
  return types;
14415
14416
  }