duckdb 0.6.1-dev19.0 → 0.6.1-dev30.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 +13 -0
- package/src/duckdb.hpp +1175 -1032
- package/src/parquet-amalgamation.cpp +36731 -36731
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -18593,6 +18593,7 @@ FileType FileHandle::GetType() {
|
|
|
18593
18593
|
|
|
18594
18594
|
|
|
18595
18595
|
|
|
18596
|
+
|
|
18596
18597
|
#include <limits>
|
|
18597
18598
|
#include <cstring>
|
|
18598
18599
|
#include <cmath>
|
|
@@ -22487,6 +22488,7 @@ unique_ptr<FileSystem> FileSystem::CreateLocal() {
|
|
|
22487
22488
|
|
|
22488
22489
|
|
|
22489
22490
|
|
|
22491
|
+
|
|
22490
22492
|
namespace duckdb {
|
|
22491
22493
|
|
|
22492
22494
|
struct ConvertToString {
|
|
@@ -24109,8 +24111,11 @@ string_t StringCastFromDecimal::Operation(hugeint_t input, uint8_t width, uint8_
|
|
|
24109
24111
|
|
|
24110
24112
|
|
|
24111
24113
|
|
|
24114
|
+
|
|
24112
24115
|
namespace duckdb {
|
|
24113
24116
|
|
|
24117
|
+
struct interval_t;
|
|
24118
|
+
|
|
24114
24119
|
struct MultiplyOperator {
|
|
24115
24120
|
template <class TA, class TB, class TR>
|
|
24116
24121
|
static inline TR Operation(TA left, TB right) {
|
|
@@ -45487,6 +45492,7 @@ string Decimal::ToString(hugeint_t value, uint8_t width, uint8_t scale) {
|
|
|
45487
45492
|
|
|
45488
45493
|
|
|
45489
45494
|
|
|
45495
|
+
|
|
45490
45496
|
#include <functional>
|
|
45491
45497
|
#include <cmath>
|
|
45492
45498
|
|
|
@@ -46720,6 +46726,7 @@ DUCKDB_API DatePartSpecifier GetDatePartSpecifier(const string &specifier);
|
|
|
46720
46726
|
|
|
46721
46727
|
|
|
46722
46728
|
|
|
46729
|
+
|
|
46723
46730
|
namespace duckdb {
|
|
46724
46731
|
|
|
46725
46732
|
struct AddOperator {
|
|
@@ -46847,8 +46854,14 @@ dtime_t AddTimeOperator::Operation(interval_t left, dtime_t right);
|
|
|
46847
46854
|
|
|
46848
46855
|
|
|
46849
46856
|
|
|
46857
|
+
|
|
46850
46858
|
namespace duckdb {
|
|
46851
46859
|
|
|
46860
|
+
struct interval_t;
|
|
46861
|
+
struct date_t;
|
|
46862
|
+
struct timestamp_t;
|
|
46863
|
+
struct dtime_t;
|
|
46864
|
+
|
|
46852
46865
|
struct SubtractOperator {
|
|
46853
46866
|
template <class TA, class TB, class TR>
|
|
46854
46867
|
static inline TR Operation(TA left, TB right) {
|