Skip to content
Merged
Changes from all commits
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
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