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
|
@@ -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-
|
|
2
|
+
#define DUCKDB_VERSION "0.6.2-dev914"
|
|
3
3
|
#endif
|
|
4
4
|
#ifndef DUCKDB_SOURCE_ID
|
|
5
|
-
#define DUCKDB_SOURCE_ID "
|
|
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"
|