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