duckdb 0.3.5-dev971.0 → 0.3.5-dev987.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 +14 -2
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +30637 -30637
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -1530,7 +1530,7 @@ public:
|
|
|
1530
1530
|
}
|
|
1531
1531
|
|
|
1532
1532
|
template <class T, class RETURN_TYPE = unique_ptr<T>, typename... ARGS>
|
|
1533
|
-
RETURN_TYPE ReadSerializable(RETURN_TYPE default_value, ARGS &&...
|
|
1533
|
+
RETURN_TYPE ReadSerializable(RETURN_TYPE default_value, ARGS &&...args) {
|
|
1534
1534
|
if (field_count >= max_field_count) {
|
|
1535
1535
|
// field is not there, read the default value
|
|
1536
1536
|
return default_value;
|
|
@@ -1552,7 +1552,7 @@ public:
|
|
|
1552
1552
|
}
|
|
1553
1553
|
|
|
1554
1554
|
template <class T, class RETURN_TYPE = unique_ptr<T>, typename... ARGS>
|
|
1555
|
-
RETURN_TYPE ReadRequiredSerializable(ARGS &&...
|
|
1555
|
+
RETURN_TYPE ReadRequiredSerializable(ARGS &&...args) {
|
|
1556
1556
|
if (field_count >= max_field_count) {
|
|
1557
1557
|
// field is not there, read the default value
|
|
1558
1558
|
throw SerializationException("Attempting to read mandatory field, but field is missing");
|
|
@@ -98696,6 +98696,9 @@ void AddFun::RegisterFunction(BuiltinFunctions &set) {
|
|
|
98696
98696
|
functions.AddFunction(ListConcatFun::GetFunction());
|
|
98697
98697
|
|
|
98698
98698
|
set.AddFunction(functions);
|
|
98699
|
+
|
|
98700
|
+
functions.name = "add";
|
|
98701
|
+
set.AddFunction(functions);
|
|
98699
98702
|
}
|
|
98700
98703
|
|
|
98701
98704
|
//===--------------------------------------------------------------------===//
|
|
@@ -98914,6 +98917,9 @@ void SubtractFun::RegisterFunction(BuiltinFunctions &set) {
|
|
|
98914
98917
|
// we can negate intervals
|
|
98915
98918
|
functions.AddFunction(GetFunction(LogicalType::INTERVAL));
|
|
98916
98919
|
set.AddFunction(functions);
|
|
98920
|
+
|
|
98921
|
+
functions.name = "subtract";
|
|
98922
|
+
set.AddFunction(functions);
|
|
98917
98923
|
}
|
|
98918
98924
|
|
|
98919
98925
|
//===--------------------------------------------------------------------===//
|
|
@@ -99046,6 +99052,9 @@ void MultiplyFun::RegisterFunction(BuiltinFunctions &set) {
|
|
|
99046
99052
|
ScalarFunction({LogicalType::BIGINT, LogicalType::INTERVAL}, LogicalType::INTERVAL,
|
|
99047
99053
|
ScalarFunction::BinaryFunction<int64_t, interval_t, interval_t, MultiplyOperator>, true));
|
|
99048
99054
|
set.AddFunction(functions);
|
|
99055
|
+
|
|
99056
|
+
functions.name = "multiply";
|
|
99057
|
+
set.AddFunction(functions);
|
|
99049
99058
|
}
|
|
99050
99059
|
|
|
99051
99060
|
//===--------------------------------------------------------------------===//
|
|
@@ -99167,6 +99176,9 @@ void DivideFun::RegisterFunction(BuiltinFunctions &set) {
|
|
|
99167
99176
|
BinaryScalarFunctionIgnoreZero<interval_t, int64_t, interval_t, DivideOperator>));
|
|
99168
99177
|
|
|
99169
99178
|
set.AddFunction(functions);
|
|
99179
|
+
|
|
99180
|
+
functions.name = "divide";
|
|
99181
|
+
set.AddFunction(functions);
|
|
99170
99182
|
}
|
|
99171
99183
|
|
|
99172
99184
|
//===--------------------------------------------------------------------===//
|
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 "9c8fb89e7"
|
|
15
|
+
#define DUCKDB_VERSION "v0.3.5-dev987"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|