Skip to content

Commit

Permalink
Use "values" not "dictionary"
Browse files Browse the repository at this point in the history
Co-authored-by: Felipe Oliveira Carvalho <felipekde@gmail.com>
  • Loading branch information
kou and felipecrv authored Dec 24, 2024
1 parent cf18851 commit 96872e7
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions docs/source/format/StatisticsSchema.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,7 @@ Here is the outline of the schema for statistics::
struct<
column: int32,
statistics: map<
key: dictionary<
indices: int32,
dictionary: utf8
>,
key: dictionary<values=utf8, indices=int32>,
items: dense_union<...all needed types...>
>
>
Expand Down Expand Up @@ -127,7 +124,7 @@ Here is the details of the ``map`` of the ``statistics``:
- Nullable
- Notes
* - key
- ``dictionary<indices: int32, dictionary: utf8>``
- ``dictionary<values=utf8, indices=int32>``
- ``false``
- The string key is the name of the statistic. Dictionary-encoding is used for
efficiency as the same statistic may be repeated for different columns.
Expand Down

0 comments on commit 96872e7

Please sign in to comment.