Skip to content

Commit

Permalink
Update support status documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreeve committed Jul 16, 2024
1 parent 33ce3b2 commit 99ba9a4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
21 changes: 9 additions & 12 deletions csharp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ for currently available features.
- Float, Double, Half-float (.NET 6+)
- Binary (variable-length)
- String (utf-8)
- Large Binary, Large String (but data buffers > 2 GiB are not supported)
- Null

### Parametric Types
Expand All @@ -94,6 +95,7 @@ for currently available features.
- Time64
- Binary (fixed-length)
- List
- Large List (but offsets must be representable as int32)
- Struct
- Union
- Map
Expand Down Expand Up @@ -128,18 +130,13 @@ for currently available features.
- Run End Encoding
- Types
- Tensor
- Arrays
- Large Arrays
- Large Binary
- Large List
- Large String
- Views
- Binary
- List
- String
- Large Binary
- Large List
- Large String
- Array views
- Binary
- List
- String
- Large Binary
- Large List
- Large String
- Array Operations
- Equality / Comparison
- Casting
Expand Down
8 changes: 5 additions & 3 deletions docs/source/status.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ Data Types
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Binary ||||||||||
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Large Binary ||||| ||| ||
| Large Binary ||||| ✓ (4) ||| ||
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Utf8 ||||||||||
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Large Utf8 ||||| ||| ||
| Large Utf8 ||||| ✓ (4) ||| ||
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Binary View || || || | | | |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
Expand All @@ -85,7 +85,7 @@ Data Types
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| List |||||||| ||
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Large List |||| | ||| ||
| Large List |||| | ✓ (5) ||| ||
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| List View || || || | | | |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
Expand Down Expand Up @@ -125,6 +125,8 @@ Notes:
* \(1) Casting to/from Float16 in Java is not supported.
* \(2) Float16 support in C# is only available when targeting .NET 6+.
* \(3) Nested dictionaries not supported
* \(4) Data buffers > 2 GiB are not supported
* \(5) List offsets must be representable as Int32

.. seealso::
The :ref:`format_columnar` and the
Expand Down

0 comments on commit 99ba9a4

Please sign in to comment.