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 +1 -1
- package/src/duckdb.cpp +1 -1
- package/src/duckdb.hpp +3 -3
- package/src/parquet-amalgamation.cpp +35437 -35303
- package/src/parquet-amalgamation.hpp +3 -2
package/package.json
CHANGED
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
|
|
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 "
|
|
15
|
-
#define DUCKDB_VERSION "v0.5.2-
|
|
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
|
|
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
|