Skip to content

Commit 278bcab

Browse files
authored
apacheGH-39366: [JS] Add largeUtf8 to benchmark (apache#39367)
* Closes: apache#39366
1 parent afb40a9 commit 278bcab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

js/perf/config.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ export const arrays = {
8282
export const vectors: { [k: string]: Arrow.Vector } = Object.fromEntries([
8383
...Object.entries(typedArrays).map(([name, array]) => [name, Arrow.makeVector(array)]),
8484
...Object.entries(arrays).map(([name, array]) => [name, Arrow.vectorFromArray(array)]),
85-
['string', Arrow.vectorFromArray(arrays.dictionary, new Arrow.Utf8)],
85+
['utf8', Arrow.vectorFromArray(arrays.dictionary, new Arrow.Utf8)],
86+
['largeUtf8', Arrow.vectorFromArray(arrays.dictionary, new Arrow.LargeUtf8)],
8687
]);
8788

8889
const tracks = new Arrow.Table(batches[0].schema, batches);

0 commit comments

Comments
 (0)