dolphindb 3.0.215 → 3.0.216

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
@@ -1367,7 +1367,7 @@ export class DdbObj {
1367
1367
  return tensor;
1368
1368
  }
1369
1369
  [inspect.custom](depth, _options, _inspect) {
1370
- const options = { nullstr: true, ..._options };
1370
+ let options = { nullstr: true, ..._options };
1371
1371
  const type = this.inspect_type();
1372
1372
  const data = (() => {
1373
1373
  switch (this.form) {
@@ -1395,6 +1395,7 @@ export class DdbObj {
1395
1395
  // ...
1396
1396
  // av
1397
1397
  const type_ = this.type - 64;
1398
+ options = { ...options, grouping: false };
1398
1399
  const limit = 10;
1399
1400
  const nullstr = inspect(null, options);
1400
1401
  let array_items = new Array(Math.min(limit, this.rows));