dolphindb 3.1.15 → 3.1.16

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
@@ -1791,8 +1791,8 @@ export function formati(obj, index, options = {}) {
1791
1791
  // av
1792
1792
  const type_ = obj.type - 64;
1793
1793
  let offset = 0;
1794
- // array vector 中每一项如果为 null 都展示,避免多个逗号堆在一起的情况
1795
- options = { ...options, nullstr: true };
1794
+ // array vector 中每一项如果为 null 都展示,避免多个逗号堆在一起的情况, 同时禁用 grouping
1795
+ options = { ...options, nullstr: true, grouping: false };
1796
1796
  for (const { lengths, data, rows } of obj.value) {
1797
1797
  let acc_len = 0;
1798
1798
  if (offset + rows <= index) {