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 +4 -2
- package/package.json +1 -1
- package/src/connection.cpp +1 -1
package/binding.gyp
CHANGED
package/package.json
CHANGED
package/src/connection.cpp
CHANGED
@@ -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
|
|