Skip to content

Commit

Permalink
Added python APIs and improved comments
Browse files Browse the repository at this point in the history
Also, moved from File to String
  • Loading branch information
malhotrashivam committed Mar 16, 2024
1 parent 48906dd commit 819a1b9
Show file tree
Hide file tree
Showing 5 changed files with 450 additions and 102 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
import java.util.List;
import java.util.Map;

import static io.deephaven.base.FileUtils.convertToURI;
import static io.deephaven.parquet.base.ParquetUtils.MAGIC;
import static io.deephaven.parquet.base.ParquetUtils.METADATA_KEY;
import static io.deephaven.parquet.base.ParquetUtils.getKeyForFile;
import static io.deephaven.util.channel.SeekableChannelsProvider.convertToURI;

/**
* Used to generate a combined {@value ParquetUtils#METADATA_FILE_NAME} and
Expand Down Expand Up @@ -109,7 +109,7 @@ private static class ParquetFileMetadata {
}
this.parquetFileMetadataList = new ArrayList<>(destinations.length);
this.channelsProvider = SeekableChannelsProviderLoader.getInstance().fromServiceLoader(
convertToURI(metadataRootDirAbsPathString), null);
convertToURI(metadataRootDirAbsPathString, true), null);
this.partitioningColumnsSchema = partitioningColumnsSchema;

this.mergedSchema = null;
Expand Down
Loading

0 comments on commit 819a1b9

Please sign in to comment.