duckdb 0.8.1-dev477.0 → 0.8.1-dev480.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
@@ -2,7 +2,7 @@
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
4
  "types": "./lib/duckdb.d.ts",
5
- "version": "0.8.1-dev477.0",
5
+ "version": "0.8.1-dev480.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
@@ -138,6 +138,7 @@ AggregateFunctionSet ApproxCountDistinctFun::GetFunctions() {
138
138
  approx_count.AddFunction(GetApproxCountDistinctFunction(LogicalType::VARCHAR));
139
139
  approx_count.AddFunction(GetApproxCountDistinctFunction(LogicalType::TIMESTAMP));
140
140
  approx_count.AddFunction(GetApproxCountDistinctFunction(LogicalType::TIMESTAMP_TZ));
141
+ approx_count.AddFunction(GetApproxCountDistinctFunction(LogicalType::BLOB));
141
142
  return approx_count;
142
143
  }
143
144
 
@@ -1,8 +1,8 @@
1
1
  #ifndef DUCKDB_VERSION
2
- #define DUCKDB_VERSION "0.8.1-dev477"
2
+ #define DUCKDB_VERSION "0.8.1-dev480"
3
3
  #endif
4
4
  #ifndef DUCKDB_SOURCE_ID
5
- #define DUCKDB_SOURCE_ID "3dfd7664a8"
5
+ #define DUCKDB_SOURCE_ID "da89803681"
6
6
  #endif
7
7
  #include "duckdb/function/table/system_functions.hpp"
8
8
  #include "duckdb/main/database.hpp"