Skip to content

Commit

Permalink
re-scaled some parquet benchmarks (#312)
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub authored Jun 24, 2024
1 parent 06ad64d commit 326c857
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,28 +28,28 @@ void readFourIntegralCols() {
@Test
@Order(3)
void writeOneStringCol() {
runner.setScaleFactors(5, 25);
runner.setScaleFactors(5, 30);
runner.runParquetWriteTest("ParquetWrite- 1 String Col -Static", "NONE", "str10K");
}

@Test
@Order(4)
void readOneStringCol() {
runner.setScaleFactors(5, 25);
runner.setScaleFactors(5, 30);
runner.runParquetReadTest("ParquetRead- 1 String Col -Static");
}

@Test
@Order(5)
void writeOneBigDecimalCol() {
runner.setScaleFactors(5, 4);
runner.setScaleFactors(5, 5);
runner.runParquetWriteTest("ParquetWrite- 1 Big Decimal Col -Static", "NONE", "bigDec10K");
}

@Test
@Order(6)
void readOneBigDecimalCol() {
runner.setScaleFactors(5, 4);
runner.setScaleFactors(5, 5);
runner.runParquetReadTest("ParquetRead- 1 Big Decimal Col -Static");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ParquetMultiColTest {

@BeforeEach
void setup() {
runner.setScaleFactors(3, 2);
runner.setScaleFactors(3, 3);
}

@Test
Expand Down

0 comments on commit 326c857

Please sign in to comment.