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)  ;
1 file changed
tree: 3f8b822541006040324278cac42506ae02e85980
  1. bad_data/
  2. data/
  3. LICENSE.txt
  4. README.md
README.md

Testing Data and Utilities for Apache Parquet