duckdb 1.1.1 → 1.1.2-dev4.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/binding.gyp CHANGED
@@ -420,10 +420,12 @@
420
420
  },
421
421
  "msvs_settings": {
422
422
  "VCCLCompilerTool": {
423
- "ExceptionHandling": 1,
423
+ "ExceptionHandling": 1,
424
+ "RuntimeLibrary": 2,
424
425
  "AdditionalOptions": [
425
426
  "/bigobj",
426
- "/GR"
427
+ "/GR",
428
+ "/MD"
427
429
  ]
428
430
  }
429
431
  },
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": "1.1.1",
5
+ "version": "1.1.2-dev4.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
@@ -487,7 +487,7 @@ Napi::Value Connection::RegisterBuffer(const Napi::CallbackInfo &info) {
487
487
  auto raw_ptr = reinterpret_cast<uint64_t>(arr.ArrayBuffer().Data());
488
488
  auto length = (uint64_t)arr.ElementLength();
489
489
 
490
- arrow_scan_function += "{'ptr': " + std::to_string(raw_ptr) + ", 'size': " + std::to_string(length) + "},";
490
+ arrow_scan_function += "{'ptr': " + std::to_string(raw_ptr) + "::UBIGINT, 'size': " + std::to_string(length) + "::UBIGINT},";
491
491
  }
492
492
  arrow_scan_function += "])";
493
493