duckdb 0.5.2-dev449.0 → 0.5.2-dev454.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 +5 -0
- package/src/duckdb.hpp +2 -2
- package/src/parquet-amalgamation.cpp +37320 -37320
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -90489,6 +90489,10 @@ AggregateFunction GetApproximateQuantileAggregateFunction(PhysicalType type) {
|
|
|
90489
90489
|
return AggregateFunction::UnaryAggregateDestructor<ApproxQuantileState, int64_t, int64_t,
|
|
90490
90490
|
ApproxQuantileScalarOperation>(LogicalType::BIGINT,
|
|
90491
90491
|
LogicalType::BIGINT);
|
|
90492
|
+
case PhysicalType::INT128:
|
|
90493
|
+
return AggregateFunction::UnaryAggregateDestructor<ApproxQuantileState, hugeint_t, hugeint_t,
|
|
90494
|
+
ApproxQuantileScalarOperation>(LogicalType::HUGEINT,
|
|
90495
|
+
LogicalType::HUGEINT);
|
|
90492
90496
|
case PhysicalType::DOUBLE:
|
|
90493
90497
|
return AggregateFunction::UnaryAggregateDestructor<ApproxQuantileState, double, double,
|
|
90494
90498
|
ApproxQuantileScalarOperation>(LogicalType::DOUBLE,
|
|
@@ -90705,6 +90709,7 @@ void ApproximateQuantileFun::RegisterFunction(BuiltinFunctions &set) {
|
|
|
90705
90709
|
approx_quantile.AddFunction(GetApproximateQuantileAggregate(PhysicalType::INT16));
|
|
90706
90710
|
approx_quantile.AddFunction(GetApproximateQuantileAggregate(PhysicalType::INT32));
|
|
90707
90711
|
approx_quantile.AddFunction(GetApproximateQuantileAggregate(PhysicalType::INT64));
|
|
90712
|
+
approx_quantile.AddFunction(GetApproximateQuantileAggregate(PhysicalType::INT128));
|
|
90708
90713
|
approx_quantile.AddFunction(GetApproximateQuantileAggregate(PhysicalType::DOUBLE));
|
|
90709
90714
|
|
|
90710
90715
|
// List variants
|
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.5.2-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "13e228d3d"
|
|
15
|
+
#define DUCKDB_VERSION "v0.5.2-dev454"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|