duckdb 0.4.1-dev754.0 → 0.4.1-dev790.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 +353 -245
- package/src/duckdb.hpp +7 -6
- package/src/parquet-amalgamation.cpp +32806 -32806
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.4.1-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "d163f7ee3"
|
|
15
|
+
#define DUCKDB_VERSION "v0.4.1-dev790"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|
|
@@ -3325,7 +3325,7 @@ public:
|
|
|
3325
3325
|
DUCKDB_API Allocator(allocate_function_ptr_t allocate_function_p, free_function_ptr_t free_function_p,
|
|
3326
3326
|
reallocate_function_ptr_t reallocate_function_p,
|
|
3327
3327
|
unique_ptr<PrivateAllocatorData> private_data);
|
|
3328
|
-
|
|
3328
|
+
Allocator &operator=(Allocator &&allocator) noexcept = delete;
|
|
3329
3329
|
DUCKDB_API ~Allocator();
|
|
3330
3330
|
|
|
3331
3331
|
data_ptr_t AllocateData(idx_t size);
|
|
@@ -3656,8 +3656,8 @@ public:
|
|
|
3656
3656
|
DUCKDB_API BufferHandle(shared_ptr<BlockHandle> handle, FileBuffer *node);
|
|
3657
3657
|
DUCKDB_API ~BufferHandle();
|
|
3658
3658
|
// disable copy constructors
|
|
3659
|
-
|
|
3660
|
-
|
|
3659
|
+
BufferHandle(const BufferHandle &other) = delete;
|
|
3660
|
+
BufferHandle &operator=(const BufferHandle &) = delete;
|
|
3661
3661
|
//! enable move constructors
|
|
3662
3662
|
DUCKDB_API BufferHandle(BufferHandle &&other) noexcept;
|
|
3663
3663
|
DUCKDB_API BufferHandle &operator=(BufferHandle &&) noexcept;
|
|
@@ -6656,6 +6656,7 @@ class TableFunction;
|
|
|
6656
6656
|
|
|
6657
6657
|
struct PragmaInfo;
|
|
6658
6658
|
|
|
6659
|
+
//! The default null handling is NULL in, NULL out
|
|
6659
6660
|
enum class FunctionNullHandling : uint8_t { DEFAULT_NULL_HANDLING = 0, SPECIAL_HANDLING = 1 };
|
|
6660
6661
|
enum class FunctionSideEffects : uint8_t { NO_SIDE_EFFECTS = 0, HAS_SIDE_EFFECTS = 1 };
|
|
6661
6662
|
|
|
@@ -11986,7 +11987,7 @@ public:
|
|
|
11986
11987
|
DUCKDB_API ColumnDependencyManager();
|
|
11987
11988
|
DUCKDB_API ~ColumnDependencyManager();
|
|
11988
11989
|
DUCKDB_API ColumnDependencyManager(ColumnDependencyManager &&other) = default;
|
|
11989
|
-
|
|
11990
|
+
ColumnDependencyManager(const ColumnDependencyManager &other) = delete;
|
|
11990
11991
|
|
|
11991
11992
|
public:
|
|
11992
11993
|
//! Get the bind order that ensures dependencies are resolved before dependents are
|