table = {
const fieldNames = type.children.map((field) => field.name)
const nameVectorPairs = fieldNames.map((name, index) => [name, vector.getChildAt(index)])
const tableInput = Object.fromEntries(nameVectorPairs)
return arrow.makeTable(tableInput)
}