dolphindb 2.0.1029 → 2.0.1030
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/browser.js +4 -1
- package/browser.js.map +1 -1
- package/index.js +4 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/test.js +8 -8
- package/test.js.map +1 -1
package/browser.js
CHANGED
|
@@ -716,7 +716,10 @@ export class DdbObj {
|
|
|
716
716
|
case DdbForm.scalar:
|
|
717
717
|
switch (type) {
|
|
718
718
|
case DdbType.void:
|
|
719
|
-
|
|
719
|
+
// Server 实现中区分了 explicitNull
|
|
720
|
+
// Void::serialize()
|
|
721
|
+
// isNothing() ? 0 : 1;
|
|
722
|
+
return [Uint8Array.of(0)];
|
|
720
723
|
case DdbType.bool:
|
|
721
724
|
return [
|
|
722
725
|
Int8Array.of(value === null ?
|