Skip to content

Commit

Permalink
ARROW-16384: [Docs] Add Flight SQL to status page
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm committed Sep 6, 2022
1 parent 3e40cd3 commit bf56fc7
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion docs/source/status.rst
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ Supported features in the UCX transport:

Notes:

* \(1) No support for handshake or DoExchange.
* \(1) No support for Handshake or DoExchange.
* \(2) Support using AspNetCore authentication handlers.
* \(3) Whether a single client can support multiple concurrent calls.
* \(4) Only support for DoExchange, DoGet, DoPut, and GetFlightInfo.
Expand All @@ -222,6 +222,54 @@ Notes:
.. _gRPC: https://grpc.io/
.. _UCX: https://openucx.org/

Flight SQL
==========

.. note:: Flight SQL is still experimental.

The feature support refers to the client/server libraries only;
databases which implement the Flight SQL protocol in turn will
support/not support individual features.

+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| Feature | C++ | Java | Go | JavaScript | C# | Rust | Julia |
+============================================+=======+=======+=======+============+=======+=======+=======+
| ClosePreparedStatement |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| CreatePreparedStatement |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| GetCatalogs |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| GetCrossReference |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| GetDbSchemas |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| GetExportedKeys |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| GetImportedKeys |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| GetPrimaryKeys |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| GetSqlInfo |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| GetTables |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| GetTableTypes |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| GetXdbcTypeInfo |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| PreparedStatementQuery |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| PreparedStatementUpdate |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| StatementQuery |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+
| StatementUpdate |||| | | | |
+--------------------------------------------+-------+-------+-------+------------+-------+-------+-------+

.. seealso::
The :doc:`./format/FlightSql` specification.

C Data Interface
================

Expand Down

0 comments on commit bf56fc7

Please sign in to comment.