Skip to content

Commit

Permalink
fix: temp
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Nov 21, 2023
1 parent 3ca09a6 commit a98d226
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
import org.apache.arrow.vector.util.ByteArrayReadableSeekableByteChannel;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.jupiter.api.Disabled;
import org.junit.rules.TemporaryFolder;

public class TestDatasetWriterMap extends TestDataset {
Expand Down Expand Up @@ -97,7 +96,6 @@ private byte[] serializeFile(VectorSchemaRoot root) {
}

@Test
@Disabled("Test Disabled")
public void testAllTypesParquet() throws Exception {
try (VectorSchemaRoot root = generateAllTypesVector(rootAllocator())) {
byte[] featherData = serializeFile(root);
Expand All @@ -106,6 +104,7 @@ public void testAllTypesParquet() throws Exception {
TMP.create();
final File writtenFolder = TMP.newFolder();
final String writtenParquet = writtenFolder.toURI().toString();
System.out.println("Written Parquet: " + writtenParquet);
DatasetFileWriter.write(rootAllocator(), reader, FileFormat.PARQUET, writtenParquet);
}
}
Expand Down

0 comments on commit a98d226

Please sign in to comment.