Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/source/format/Columnar.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ while reading this document.
The columnar format has some key features:

* Data adjacency for sequential access (scans)
* O(1) (constant-time) random access
* O(1) (constant-time) random access [#f1]_
* SIMD and vectorization-friendly
* Relocatable without "pointer swizzling", allowing for true zero-copy
access in shared memory
Expand All @@ -52,6 +52,9 @@ data representation and serialization details; issues such as
coordinating mutation of data structures are left to be handled by
implementations.

.. [#f1] Except for the :ref:`run-end-encoded-layout` where random access is
O(log n).

Terminology
===========

Expand Down
Loading