Skip to content

Commit

Permalink
Allow Uint32Array type in parseTable (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron authored Apr 18, 2024
1 parent 752dc63 commit 70aa3c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This expects an array of [`ArrowArray`](https://arrow.apache.org/docs/format/CDa
*/
export function parseTable<T extends TypeMap>(
buffer: ArrayBuffer,
arrayPtrs: number[],
arrayPtrs: number[] | Uint32Array,
schemaPtr: number,
copy: boolean = true,
): arrow.Table<T> {
Expand Down

0 comments on commit 70aa3c6

Please sign in to comment.