This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Fact] | |
public void Read_plain_dictionary_data_page_that_has_no_content() | |
{ | |
using (var reader = new ParquetReader(OpenTestFile("/special/data_page_without_content.parquet"), leaveStreamOpen: false)) | |
{ | |
// if the issue has not been fixed, this line will throw EndOfStreamException | |
DataColumn[] columns = reader.ReadEntireRowGroup(); | |
// Compare to ground truth from spark |