duckdb 0.3.5-dev1360.0 → 0.3.5-dev1398.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 +486 -153
- package/src/duckdb.hpp +6 -2
- package/src/parquet-amalgamation.cpp +35006 -35006
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.3.5-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "ee02a5356"
|
|
15
|
+
#define DUCKDB_VERSION "v0.3.5-dev1398"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|
|
@@ -3718,6 +3718,8 @@ public:
|
|
|
3718
3718
|
//! Verify that the Vector is in a consistent, not corrupt state. DEBUG
|
|
3719
3719
|
//! FUNCTION ONLY!
|
|
3720
3720
|
DUCKDB_API void Verify(idx_t count);
|
|
3721
|
+
//! Asserts that the CheckMapValidity returns MapInvalidReason::VALID
|
|
3722
|
+
DUCKDB_API static void VerifyMap(Vector &map, const SelectionVector &sel, idx_t count);
|
|
3721
3723
|
DUCKDB_API static void Verify(Vector &vector, const SelectionVector &sel, idx_t count);
|
|
3722
3724
|
DUCKDB_API void UTFVerify(idx_t count);
|
|
3723
3725
|
DUCKDB_API void UTFVerify(const SelectionVector &sel, idx_t count);
|
|
@@ -9897,6 +9899,8 @@ enum class StatementReturnType : uint8_t {
|
|
|
9897
9899
|
NOTHING // the statement returns nothing
|
|
9898
9900
|
};
|
|
9899
9901
|
|
|
9902
|
+
string StatementReturnTypeToString(StatementReturnType type);
|
|
9903
|
+
|
|
9900
9904
|
//! A struct containing various properties of a SQL statement
|
|
9901
9905
|
struct StatementProperties {
|
|
9902
9906
|
StatementProperties()
|