duckdb 0.3.5-dev167.0 → 0.3.5-dev169.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.3.5-dev167.0",
4
+ "version": "0.3.5-dev169.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -172990,15 +172990,27 @@ static void UpdateChunk(Vector &data, Vector &updates, Vector &row_ids, idx_t co
172990
172990
  case PhysicalType::INT8:
172991
172991
  TemplatedUpdateLoop<int8_t>(data, updates, row_ids, count, base_index);
172992
172992
  break;
172993
+ case PhysicalType::UINT8:
172994
+ TemplatedUpdateLoop<uint8_t>(data, updates, row_ids, count, base_index);
172995
+ break;
172993
172996
  case PhysicalType::INT16:
172994
172997
  TemplatedUpdateLoop<int16_t>(data, updates, row_ids, count, base_index);
172995
172998
  break;
172999
+ case PhysicalType::UINT16:
173000
+ TemplatedUpdateLoop<uint16_t>(data, updates, row_ids, count, base_index);
173001
+ break;
172996
173002
  case PhysicalType::INT32:
172997
173003
  TemplatedUpdateLoop<int32_t>(data, updates, row_ids, count, base_index);
172998
173004
  break;
173005
+ case PhysicalType::UINT32:
173006
+ TemplatedUpdateLoop<uint32_t>(data, updates, row_ids, count, base_index);
173007
+ break;
172999
173008
  case PhysicalType::INT64:
173000
173009
  TemplatedUpdateLoop<int64_t>(data, updates, row_ids, count, base_index);
173001
173010
  break;
173011
+ case PhysicalType::UINT64:
173012
+ TemplatedUpdateLoop<uint64_t>(data, updates, row_ids, count, base_index);
173013
+ break;
173002
173014
  case PhysicalType::FLOAT:
173003
173015
  TemplatedUpdateLoop<float>(data, updates, row_ids, count, base_index);
173004
173016
  break;
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 "0a6b26232"
15
- #define DUCKDB_VERSION "v0.3.5-dev167"
14
+ #define DUCKDB_SOURCE_ID "05f3ba351"
15
+ #define DUCKDB_VERSION "v0.3.5-dev169"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //