domoritz commented on issue #14973: URL: https://github.com/apache/arrow/issues/14973#issuecomment-1363310498
I think you brought up a good point how ``` const tableAsString = tableFromIPC(someSource).toString(); console.log(tableAsString); // '[{"id":"foo","name":"bar","dob":Fri Dec 15 2000 12:00:00 GMT+0100 (Central European Standard Time)}]' ``` should look more like ``` const tableAsArray = tableFromIPC(someSource).toArray(); console.log(tableAsArray); // [{ id: 'foo', name: 'bar', dob: Fri Dec 15 2000 12:00:00 GMT+0100 (Central European Standard Time) }] ``` to avoid the confusion your team member ran into. What do you think about making that change? -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org