duckdb 0.4.1-dev436.0 → 0.4.1-dev439.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.4.1-dev436.0",
4
+ "version": "0.4.1-dev439.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -106523,7 +106523,7 @@ void ArrowToDuckDBList(Vector &vector, ArrowArray &array, ArrowScanLocalState &s
106523
106523
  le.length = original_type.second;
106524
106524
  cur_offset += original_type.second;
106525
106525
  }
106526
- list_size = cur_offset;
106526
+ list_size = start_offset + cur_offset;
106527
106527
  } else if (original_type.first == ArrowVariableSizeType::NORMAL) {
106528
106528
  auto offsets = (uint32_t *)array.buffers[1] + array.offset + scan_state.chunk_offset;
106529
106529
  if (nested_offset != -1) {