Skip to content
Merged
Changes from 1 commit
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
14 changes: 12 additions & 2 deletions docs/source/cpp/parquet.rst
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,14 @@ physical type.
+-------------------+-----------------------------+----------------------------+---------+
| FLOAT16 | FIXED_LENGTH_BYTE_ARRAY | HalfFloat | |
+-------------------+-----------------------------+----------------------------+---------+
| UUID | FIXED_LENGTH_BYTE_ARRAY | Extension (arrow.uuid) | |
+-------------------+-----------------------------+----------------------------+---------+
| JSON | BYTE_ARRAY | Extension (arrow.json) | |
+-------------------+-----------------------------+----------------------------+---------+
| GEOMETRY | BYTE_ARRAY | Extension (geoarrow.wkb) | \(6) |
+-------------------+-----------------------------+----------------------------+---------+
| GEOGRAPHY | BYTE_ARRAY | Extension (geoarrow.wkb) | \(6) |
+-------------------+-----------------------------+----------------------------+---------+

* \(1) On the write side, the Parquet physical type INT32 is generated.

Expand All @@ -496,9 +504,11 @@ physical type.
in contradiction with the
`Parquet specification <https://github.com/apache/parquet-format/blob/master/LogicalTypes.md#maps>`__.

*Unsupported logical types:* JSON, BSON, UUID. If such a type is encountered
* \(6) Requires that the geoarrow.wkb extension type is registered.
Comment thread
paleolimbot marked this conversation as resolved.
Outdated

*Unsupported logical types:* BSON. If such a type is encountered
when reading a Parquet file, the default physical type mapping is used (for
example, a Parquet JSON column may be read as Arrow Binary or FixedSizeBinary).
example, a Parquet BSON column may be read as Arrow Binary or FixedSizeBinary).

Converted types
~~~~~~~~~~~~~~~
Expand Down
Loading