Skip to content

Commit 3c4ad5f

Browse files
committed
Change row length to 8192 in BenchmarkBlockSerde to match real workload case
1 parent b8ed667 commit 3c4ad5f

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
@@ -81,7 +81,7 @@ public class BenchmarkBlockSerde
8181
{
8282
private static final DecimalType LONG_DECIMAL_TYPE = createDecimalType(30, 5);
8383

84-
public static final int ROWS = 10_000_000;
84+
public static final int ROWS = 8192;
8585

8686
@Benchmark
8787
public Object serializeLongDecimal(LongDecimalBenchmarkData data)

0 commit comments

Comments
 (0)