Hello!

I am trying to test a function that turns a list of some data to a arrow
record batch. In order to do that, I need to compare the output of the
function to a "correct" arrow record batch. However, I struggle with
creating the "correct" arrow record batch.

My test data is a list of rows that each has a integer column "a" with a
null value:
[{a: 1}, {a: 2}, {a: 3}, {a: null}]

Is there a format of data that I can use to turn into arrow record batch
easily (for instance, json?) ?

Reply via email to