Zach Olstein
Zach Olstein
Create ParquetFileR and ParquetFileW interfaces that represent files that can be read from or written to respectively. Replace usages of the ParquetFile interface with the relevant R/W interface. An equivalent...
In theory, one of the advantages of the parquet format is the ability to use metadata in the footer to avoid processing the entire file in order to locate specific...
Add a new method, SeekRowGroup, to the ParquetReader that logically moves the reader to the start of the indexed row group, such that the next read will start by returning...
Update the Marshal function to call TypeID on the input value rather than on the type object to generate the cache key. The TypeID function internally calls TypeOf on the...
The Analyze File button runs the following function: ```js function loadFile() { let logFile = document.getElementById("queryLogFile").files[0]; if (logFile && logFile != null) { msg.innerHTML = "Start Reading file"; let reader...