duckdb 0.6.1-dev10.0 → 0.6.1-dev12.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-dev10.0",
5
+ "version": "0.6.1-dev12.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "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 "9479be7669"
15
- #define DUCKDB_VERSION "v0.6.1-dev10"
14
+ #define DUCKDB_SOURCE_ID "7fbaefc8a1"
15
+ #define DUCKDB_VERSION "v0.6.1-dev12"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //
@@ -19440,6 +19440,8 @@ DUCKDB_API const char *duckdb_result_error(duckdb_result *result);
19440
19440
  /*!
19441
19441
  Fetches a data chunk from the duckdb_result. This function should be called repeatedly until the result is exhausted.
19442
19442
 
19443
+ The result must be destroyed with `duckdb_destroy_data_chunk`.
19444
+
19443
19445
  This function supersedes all `duckdb_value` functions, as well as the `duckdb_column_data` and `duckdb_nullmask_data`
19444
19446
  functions. It results in significantly better performance, and should be preferred in newer code-bases.
19445
19447