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/index.js CHANGED
@@ -1766,6 +1766,8 @@ export function formati(obj, index, options = {}) {
1766
1766
  // av
1767
1767
  const type_ = obj.type - 64;
1768
1768
  let offset = 0;
1769
+ // array vector 中禁用 grouping
1770
+ options = { ...options, grouping: false };
1769
1771
  const nullstr = inspect(null, options);
1770
1772
  for (const { lengths, data, rows } of obj.value) {
1771
1773
  let acc_len = 0;