duckdb 0.3.5-dev452.0 → 0.3.5-dev457.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.hpp +9 -2
- package/src/parquet-amalgamation.cpp +35437 -35437
package/package.json
CHANGED
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 "e9ab0d515"
|
|
15
|
+
#define DUCKDB_VERSION "v0.3.5-dev457"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|
|
@@ -3978,6 +3978,9 @@ struct SequenceVector {
|
|
|
3978
3978
|
extern "C" {
|
|
3979
3979
|
#endif
|
|
3980
3980
|
|
|
3981
|
+
#ifndef ARROW_C_DATA_INTERFACE
|
|
3982
|
+
#define ARROW_C_DATA_INTERFACE
|
|
3983
|
+
|
|
3981
3984
|
#define ARROW_FLAG_DICTIONARY_ORDERED 1
|
|
3982
3985
|
#define ARROW_FLAG_NULLABLE 2
|
|
3983
3986
|
#define ARROW_FLAG_MAP_KEYS_SORTED 4
|
|
@@ -4014,7 +4017,10 @@ struct ArrowArray {
|
|
|
4014
4017
|
// Opaque producer-specific data
|
|
4015
4018
|
void *private_data;
|
|
4016
4019
|
};
|
|
4020
|
+
#endif
|
|
4017
4021
|
|
|
4022
|
+
#ifndef ARROW_C_STREAM_INTERFACE
|
|
4023
|
+
#define ARROW_C_STREAM_INTERFACE
|
|
4018
4024
|
// EXPERIMENTAL
|
|
4019
4025
|
struct ArrowArrayStream {
|
|
4020
4026
|
// Callback to get the stream type
|
|
@@ -4039,6 +4045,7 @@ struct ArrowArrayStream {
|
|
|
4039
4045
|
// Opaque producer-specific data
|
|
4040
4046
|
void *private_data;
|
|
4041
4047
|
};
|
|
4048
|
+
#endif
|
|
4042
4049
|
|
|
4043
4050
|
#ifdef __cplusplus
|
|
4044
4051
|
}
|