MRYingLEE opened a new issue, #45115:
URL: https://github.com/apache/arrow/issues/45115
### Describe the bug, including details regarding any error messages,
version, and platform.
```javascript
import { RecordBatchJSONWriter } from 'apache-arrow';
const source = arrow_table3;// arrow_table3 is an Apache Arrow table
const writer = RecordBatchJSONWriter.writeAll(source);
const string = writer.toString();
const json = JSON.parse(string) ;
console.log(json);
```
met an error
```
status: error
ename: RangeError
evalue: byte length of Uint32Array should be a multiple of 4
traceback: RangeError: byte length of Uint32Array should be a multiple of 4
at new Uint32Array (<anonymous>)
at sl (https://cdn.jsdelivr.net/npm/apache-arrow/+esm:7:185468)
at sl.next (<anonymous>)
at nl.visitTimestamp
(https://cdn.jsdelivr.net/npm/apache-arrow/+esm:7:184567)
at nl.visit (https://cdn.jsdelivr.net/npm/apache-arrow/+esm:7:51431)
at nl.visit (https://cdn.jsdelivr.net/npm/apache-arrow/+esm:7:183834)
at https://cdn.jsdelivr.net/npm/apache-arrow/+esm:7:51356
at Array.map (<anonymous>)
at nl.visitMany (https://cdn.jsdelivr.net/npm/apache-arrow/+esm:7:51339)
at https://cdn.jsdelivr.net/npm/apache-arrow/+esm:7:183475
```
### Component(s)
JavaScript
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]