Skip to content

Commit

Permalink
switch to smaller test file
Browse files Browse the repository at this point in the history
  • Loading branch information
mukunku authored and aloneguid committed Oct 11, 2022
1 parent 2d72965 commit 8795b4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Parquet.Test/ParquetReaderTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ public async Task Reads_rle_dictionary_encoded_columns() {
DataColumn[] data = await reader.ReadEntireRowGroupAsync();

//If we made it this far we were able to read all the columns
Assert.Equal(5, data[0].Data.Length);
Assert.Single(data[0].Data);
Assert.Equal(40539, ((float?[])data[0].Data)[0]);
}
}

Expand Down
Binary file modified src/Parquet.Test/data/rle_dictionary_encoded_columns.parquet
Binary file not shown.

0 comments on commit 8795b4b

Please sign in to comment.