ianmcook commented on code in PR #39081:
URL: https://github.com/apache/arrow/pull/39081#discussion_r1416236766


##########
http/examples/get/client.js:
##########
@@ -0,0 +1,25 @@
+const Arrow = require('apache-arrow');
+
+const url = 'http://localhost:8000';
+
+async function getArrowData(url) {
+  try {
+    const table = await Arrow.tableFromIPC(fetch(url))
+    return table;

Review Comment:
   IIUC, what the Arrow JavaScript library calls a table is not the same as 
what Arrow C++ calls a Table. In JavaScript, it's made up of an array of record 
batches.



-- 
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]

Reply via email to