duckdb 0.3.5-dev329.0 → 0.3.5-dev344.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 +3 -0
- package/src/duckdb.hpp +4 -4
- package/src/parquet-amalgamation.cpp +35601 -35601
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -77813,6 +77813,9 @@ void AvgFun::RegisterFunction(BuiltinFunctions &set) {
|
|
|
77813
77813
|
LogicalType::DOUBLE, LogicalType::DOUBLE, true));
|
|
77814
77814
|
set.AddFunction(avg);
|
|
77815
77815
|
|
|
77816
|
+
avg.name = "mean";
|
|
77817
|
+
set.AddFunction(avg);
|
|
77818
|
+
|
|
77816
77819
|
AggregateFunctionSet favg("favg");
|
|
77817
77820
|
favg.AddFunction(AggregateFunction::UnaryAggregate<KahanAvgState, double, double, KahanAverageOperation>(
|
|
77818
77821
|
LogicalType::DOUBLE, LogicalType::DOUBLE, true));
|
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 "49aec4865"
|
|
15
|
+
#define DUCKDB_VERSION "v0.3.5-dev344"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|
|
@@ -22808,8 +22808,8 @@ namespace duckdb {
|
|
|
22808
22808
|
|
|
22809
22809
|
class BetweenExpression : public ParsedExpression {
|
|
22810
22810
|
public:
|
|
22811
|
-
BetweenExpression(unique_ptr<ParsedExpression> input, unique_ptr<ParsedExpression> lower,
|
|
22812
|
-
|
|
22811
|
+
DUCKDB_API BetweenExpression(unique_ptr<ParsedExpression> input, unique_ptr<ParsedExpression> lower,
|
|
22812
|
+
unique_ptr<ParsedExpression> upper);
|
|
22813
22813
|
|
|
22814
22814
|
unique_ptr<ParsedExpression> input;
|
|
22815
22815
|
unique_ptr<ParsedExpression> lower;
|