duckdb 0.5.2-dev1268.0 → 0.5.2-dev1278.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.5.2-dev1268.0",
5
+ "version": "0.5.2-dev1278.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -20261,7 +20261,7 @@ public:
20261
20261
  //! Read exactly nr_bytes from the specified location in the file. Fails if nr_bytes could not be read. This is
20262
20262
  //! equivalent to calling SetFilePointer(location) followed by calling Read().
20263
20263
  void Read(FileHandle &handle, void *buffer, int64_t nr_bytes, idx_t location) override;
20264
- //! Write exactly nr_bytes to the specified location in the file. Fails if nr_bytes could not be read. This is
20264
+ //! Write exactly nr_bytes to the specified location in the file. Fails if nr_bytes could not be written. This is
20265
20265
  //! equivalent to calling SetFilePointer(location) followed by calling Write().
20266
20266
  void Write(FileHandle &handle, void *buffer, int64_t nr_bytes, idx_t location) override;
20267
20267
  //! Read nr_bytes from the specified file into the buffer, moving the file pointer forward by nr_bytes. Returns the
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 "101aa9b58"
15
- #define DUCKDB_VERSION "v0.5.2-dev1268"
14
+ #define DUCKDB_SOURCE_ID "2439d3424"
15
+ #define DUCKDB_VERSION "v0.5.2-dev1278"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //
@@ -2149,7 +2149,7 @@ public:
2149
2149
  //! Read exactly nr_bytes from the specified location in the file. Fails if nr_bytes could not be read. This is
2150
2150
  //! equivalent to calling SetFilePointer(location) followed by calling Read().
2151
2151
  DUCKDB_API virtual void Read(FileHandle &handle, void *buffer, int64_t nr_bytes, idx_t location);
2152
- //! Write exactly nr_bytes to the specified location in the file. Fails if nr_bytes could not be read. This is
2152
+ //! Write exactly nr_bytes to the specified location in the file. Fails if nr_bytes could not be written. This is
2153
2153
  //! equivalent to calling SetFilePointer(location) followed by calling Write().
2154
2154
  DUCKDB_API virtual void Write(FileHandle &handle, void *buffer, int64_t nr_bytes, idx_t location);
2155
2155
  //! Read nr_bytes from the specified file into the buffer, moving the file pointer forward by nr_bytes. Returns the