ianmcook commented on code in PR #14176:
URL: https://github.com/apache/arrow/pull/14176#discussion_r1060927951


##########
docs/source/format/Columnar.rst:
##########
@@ -765,6 +765,68 @@ application.
 We discuss dictionary encoding as it relates to serialization further
 below.
 
+.. _run-end-encoded-layout:
+
+Run-End Encoded Layout
+-------------------------
+
+Run-End is a data representation that represents data as sequences of the
+same value, called runs. Each run is represented as a value, and an integer
+describing the index in the array where the run ends.

Review Comment:
   ```suggestion
   Run-end encoding (REE) is a variation of run-length encoding (RLE). These
   encodings are well-suited for representing data containing sequences of the
   same value, called runs. In run-end encoding, each run is represented as a
   value and an integer giving the index in the array where the run ends.
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to