Skip to content

Commit

Permalink
PARQUET-2332: Fix unexpectedly disabled tests to be executed (#1130)
Browse files Browse the repository at this point in the history
  • Loading branch information
sekikn authored Aug 9, 2023
1 parent 6142028 commit 62e888b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public void testToAvroCommandFromJson() throws IOException {
assert (cmd.run() == 0);
}

@Test
public void testToAvroCommandWithGzipCompression() throws IOException {
File avroFile = toAvro(parquetFile(), "GZIP");
Assert.assertTrue(avroFile.exists());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@ public void testDouble_V2_WithByteStreamSplit() {
ByteStreamSplitValuesWriter.class);
}

@Test
public void testFloat_V1_WithByteStreamSplitAndDictionary() {
doTestValueWriter(
PrimitiveTypeName.FLOAT,
Expand Down Expand Up @@ -419,6 +420,7 @@ public void testDouble_V2_WithByteStreamSplitAndDictionary() {
PlainDoubleDictionaryValuesWriter.class, ByteStreamSplitValuesWriter.class);
}

@Test
public void testColumnWiseDictionaryWithFalseDefault() {
ValuesWriterFactory factory = getDefaultFactory(WriterVersion.PARQUET_2_0, false,
"binary_dict",
Expand Down

0 comments on commit 62e888b

Please sign in to comment.