dolphindb 2.0.959 → 2.0.961

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 CHANGED
@@ -1595,6 +1595,8 @@ export function formati(obj, index, options = {}) {
1595
1595
  const { base, data } = obj.value;
1596
1596
  return format(DdbType.string, base[data[index]], obj.le, options);
1597
1597
  }
1598
+ case DdbType.void:
1599
+ return format(obj.type, obj.value, obj.le, options);
1598
1600
  case DdbType.uuid:
1599
1601
  case DdbType.int128:
1600
1602
  case DdbType.ipaddr: