duckdb 0.5.2-dev449.0 → 0.5.2-dev451.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
- "version": "0.5.2-dev449.0",
4
+ "version": "0.5.2-dev451.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
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 "5e398d4cc"
15
- #define DUCKDB_VERSION "v0.5.2-dev449"
14
+ #define DUCKDB_SOURCE_ID "f7e9d830f"
15
+ #define DUCKDB_VERSION "v0.5.2-dev451"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //