Skip to content

Commit

Permalink
Remove outer map
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 27, 2024
1 parent 06b06a8 commit 3cdb559
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions docs/source/format/CDataInterfaceStatistics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,39 +83,36 @@ Arrow map array that uses this schema.

Here is the outline of the schema for statistics::

map<
key: int32,
items: map<
key: dictionary<
indices: int32,
dictionary: utf8
>,
items: dense_union<...all needed types...>,
>
column: int32,
values: map<
key: dictionary<
indices: int32,
dictionary: utf8
>,
items: dense_union<...all needed types...>,
>

Here is the details of the top-level ``map``:
Here is the details of top-level columns:

.. list-table::
:header-rows: 1

* - Key or items
* - Name
- Data type
- Nullable
- Notes
* - key
* - ``column``
- ``int32``
- ``true``
- The zero-based column index, or null if the statistics
describe the whole table or record batch.
* - items
* - ``values``
- ``map``
- ``false``
- Statistics for the target column, table or record batch. See
the separate table below for details.

Here is the details of the nested ``map`` as the items part of the
above ``map``:
Here is the details of the ``map`` of the ``values``:

.. list-table::
:header-rows: 1
Expand Down

0 comments on commit 3cdb559

Please sign in to comment.