From 115c2a1e454dbcb0d4986e57f7c7f35f168ad180 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Thu, 18 Apr 2024 19:41:40 -0400 Subject: [PATCH] Allow Uint32Array type in parseTable --- src/table.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/table.ts b/src/table.ts index 73a72e4..44cd676 100644 --- a/src/table.ts +++ b/src/table.ts @@ -15,7 +15,7 @@ This expects an array of [`ArrowArray`](https://arrow.apache.org/docs/format/CDa */ export function parseTable( buffer: ArrayBuffer, - arrayPtrs: number[], + arrayPtrs: number[] | Uint32Array, schemaPtr: number, copy: boolean = true, ): arrow.Table {