dolphindb 3.0.110 → 3.0.111

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
@@ -1960,6 +1960,7 @@ export function convert(type, value, le, { blob = 'string', timestamp = 'ms' } =
1960
1960
  case DdbType.handle:
1961
1961
  case DdbType.datasource:
1962
1962
  case DdbType.resource:
1963
+ case DdbType.compressed:
1963
1964
  return value;
1964
1965
  case DdbType.blob:
1965
1966
  return blob === 'string' ? decode(value) : value;
@@ -2025,6 +2026,7 @@ export function converts(type, value, rows, le, options) {
2025
2026
  case DdbType.resource:
2026
2027
  case DdbType.functiondef:
2027
2028
  case DdbType.blob:
2029
+ case DdbType.compressed:
2028
2030
  return Array.prototype.map.call(value, (x) => convert(type, x, le, options));
2029
2031
  case DdbType.void:
2030
2032
  return [];