Skip to content

Commit 5719c20

Browse files
committed
Change row length to 8192 in BenchmarkBlockSerde to match real workload case
1 parent 27eb013 commit 5719c20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/trino-main/src/test/java/io/trino/execution/buffer/BenchmarkBlockSerde.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public class BenchmarkBlockSerde
8383
{
8484
private static final DecimalType LONG_DECIMAL_TYPE = createDecimalType(30, 5);
8585

86-
public static final int ROWS = 10_000_000;
86+
public static final int ROWS = 8192;
8787

8888
@Benchmark
8989
public Object serializeLongDecimal(LongDecimalBenchmarkData data)

0 commit comments

Comments
 (0)