Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PARQUET-2187: Update rle_boolean_encoding file with more rows
The previous file with RLE encoding with boolean type had only 7 rows, which did not use `rle-run` part of the encoded data RLE encoding has a combination of` <bit-packed-run>` and ` <rle-run>` . [RLE encoding ](https://parquet.apache.org/docs/file-format/data-pages/encodings/#a-namerlearun-length-encoding--bit-packing-hybrid-rle--3) `run := <bit-packed-run> | <rle-run>` Replacing with a new file with more data (68 rows) , produced by the following statement. This ensures we will have coverage for both `bit-packed` decoding and `rle-run` decoding Create with Athena. insert into boolean_datatype_athena VALUES (true), (false), (null), (true), (true), (false), (false), (true) , (true), (true), (false), (false), (true), (true), (false), (null), (true), (true), (false), (false), (true) , (true), (false), (null), (true), (true), (false), (false), (true) , (true), (true), (false), (false) , (false), (false), (true) , (true), (false), (null), (true), (true), (false), (false), (true) , (true), (true), (false), (false), (null), (true), (true), (false), (false), (true) , (true), (true) ,(false), (true) , (true), (false), (null), (true), (true), (false), (false), (true) , (true), (true) ;
- Loading branch information