Skip to content

Commit

Permalink
Add some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
wankunde committed Jan 23, 2024
1 parent 4bcf880 commit d86d9c0
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,18 @@ public FileMetaData getFileMetaData() {
return fileMetaData;
}

/**
* Reuse the inputFile in ParquetFileReader if it is not null
* @return
*/
public InputFile getInputFile() {
return inputFile;
}

/**
*
* @param inputFile Cache the inputFile in readFooter method and reuse it in ParquetFileReader
*/
public void setInputFile(InputFile inputFile) {
this.inputFile = inputFile;
}
Expand Down

0 comments on commit d86d9c0

Please sign in to comment.