dolphindb 3.0.110 → 3.0.112

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
@@ -1986,6 +1986,7 @@ export function convert(type, value, le, { blob = 'string', timestamp = 'ms' } =
1986
1986
  case DdbType.handle:
1987
1987
  case DdbType.datasource:
1988
1988
  case DdbType.resource:
1989
+ case DdbType.compressed:
1989
1990
  return value;
1990
1991
  case DdbType.blob:
1991
1992
  return blob === 'string' ? decode(value) : value;
@@ -2051,6 +2052,7 @@ export function converts(type, value, rows, le, options) {
2051
2052
  case DdbType.resource:
2052
2053
  case DdbType.functiondef:
2053
2054
  case DdbType.blob:
2055
+ case DdbType.compressed:
2054
2056
  return Array.prototype.map.call(value, (x) => convert(type, x, le, options));
2055
2057
  case DdbType.void:
2056
2058
  return [];