dolphindb 3.0.129 → 3.0.130

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
@@ -1318,7 +1318,7 @@ export class DdbObj {
1318
1318
  }
1319
1319
  case DdbType.char: {
1320
1320
  const value = dv.getInt8(offset);
1321
- tensor.push(value === nulls.int8 ? null : value);
1321
+ tensor.push(convert(dataType, value, le));
1322
1322
  break;
1323
1323
  }
1324
1324
  case DdbType.short: {