duckdb 0.6.2-dev910.0 → 0.6.2-dev914.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.6.2-dev910.0",
5
+ "version": "0.6.2-dev914.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
@@ -1,7 +1,7 @@
1
1
  //===----------------------------------------------------------------------===//
2
2
  // DuckDB
3
3
  //
4
- // icu-makedate.hpp
4
+ // icu-timezone.hpp
5
5
  //
6
6
  //
7
7
  //===----------------------------------------------------------------------===//
@@ -1674,6 +1674,9 @@ vector<idx_t> ListVector::Search(Vector &list, const Value &key, idx_t row) {
1674
1674
  case PhysicalType::DOUBLE:
1675
1675
  TemplatedSearchInMap<double>(list, key, offsets, key.IsNull(), entry.offset, entry.length);
1676
1676
  break;
1677
+ case PhysicalType::INTERVAL:
1678
+ TemplatedSearchInMap<interval_t>(list, key, offsets, key.IsNull(), entry.offset, entry.length);
1679
+ break;
1677
1680
  case PhysicalType::VARCHAR:
1678
1681
  SearchStringInMap(list, StringValue::Get(key), offsets, key.IsNull(), entry.offset, entry.length);
1679
1682
  break;
@@ -1,8 +1,8 @@
1
1
  #ifndef DUCKDB_VERSION
2
- #define DUCKDB_VERSION "0.6.2-dev910"
2
+ #define DUCKDB_VERSION "0.6.2-dev914"
3
3
  #endif
4
4
  #ifndef DUCKDB_SOURCE_ID
5
- #define DUCKDB_SOURCE_ID "e74e2471a5"
5
+ #define DUCKDB_SOURCE_ID "51eaae44c9"
6
6
  #endif
7
7
  #include "duckdb/function/table/system_functions.hpp"
8
8
  #include "duckdb/main/database.hpp"