This is an automated email from the ASF dual-hosted git repository.
kszucs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new 3c12d3e ARROW-14317: [Doc] Update C data interface implementation
status
3c12d3e is described below
commit 3c12d3e5b502976f26ac93f9c9f09a905d25dc8c
Author: Antoine Pitrou <[email protected]>
AuthorDate: Thu Oct 14 14:26:30 2021 +0200
ARROW-14317: [Doc] Update C data interface implementation status
The C data interface was implemented for Java in ARROW-12965.
Closes #11419 from pitrou/ARROW-14317-doc-impl-status
Authored-by: Antoine Pitrou <[email protected]>
Signed-off-by: Krisztián Szűcs <[email protected]>
---
docs/source/status.rst | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/docs/source/status.rst b/docs/source/status.rst
index e238048..496cdfd 100644
--- a/docs/source/status.rst
+++ b/docs/source/status.rst
@@ -177,18 +177,18 @@ Notes:
C Data Interface
================
-+-----------------------------+-------+--------+-------+-------+----+
-| Feature | C++ | Python | R | Rust | Go |
-| | | | | | |
-+=============================+=======+========+=======+=======+====+
-| Schema export | ✓ | ✓ | ✓ | ✓ | ✓ |
-+-----------------------------+-------+--------+-------+-------+----+
-| Array export | ✓ | ✓ | ✓ | ✓ | ✓ |
-+-----------------------------+-------+--------+-------+-------+----+
-| Schema import | ✓ | ✓ | ✓ | ✓ | ✓ |
-+-----------------------------+-------+--------+-------+-------+----+
-| Array import | ✓ | ✓ | ✓ | ✓ | ✓ |
-+-----------------------------+-------+--------+-------+-------+----+
++-----------------------------+-------+--------+-------+-------+----+-------+
+| Feature | C++ | Python | R | Rust | Go | Java |
+| | | | | | | |
++=============================+=======+========+=======+=======+====+=======+
+| Schema export | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
++-----------------------------+-------+--------+-------+-------+----+-------+
+| Array export | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
++-----------------------------+-------+--------+-------+-------+----+-------+
+| Schema import | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
++-----------------------------+-------+--------+-------+-------+----+-------+
+| Array import | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
++-----------------------------+-------+--------+-------+-------+----+-------+
.. seealso::
The :ref:`C Data Interface <c-data-interface>` specification.