Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/src/main/sphinx/connector/delta-lake.rst
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,8 @@ The following example uses all three table properties::
Updating data
^^^^^^^^^^^^^

You can use the connector to :doc:`/sql/insert`, :doc:`/sql/delete` and
:doc:`/sql/update` data in Delta Lake tables.
You can use the connector to :doc:`/sql/insert`, :doc:`/sql/delete`,
:doc:`/sql/update`, and :doc:`/sql/merge` data in Delta Lake tables.

Write operations are supported for tables stored on the following systems:

Expand Down
6 changes: 4 additions & 2 deletions docs/src/main/sphinx/connector/hive.rst
Original file line number Diff line number Diff line change
Expand Up @@ -800,8 +800,8 @@ Data management
^^^^^^^^^^^^^^^

The :ref:`sql-data-management` functionality includes support for ``INSERT``,
``UPDATE``, and ``DELETE`` statements, with the exact support depending on the
storage system, file format, and metastore:
``UPDATE``, ``DELETE``, and ``MERGE`` statements, with the exact support
depending on the storage system, file format, and metastore:

When connecting to a Hive metastore version 3.x, the Hive connector supports
reading from and writing to insert-only and ACID tables, with full support for
Expand All @@ -815,6 +815,8 @@ which the ``WHERE`` clause may match arbitrary sets of rows.
:doc:`/sql/update` is only supported for transactional Hive tables with format
ORC. ``UPDATE`` of partition or bucket columns is not supported.

:doc:`/sql/merge` is only supported for ACID tables.

ACID tables created with `Hive Streaming Ingest <https://cwiki.apache.org/confluence/display/Hive/Streaming+Data+Ingest>`_
are not supported.

Expand Down
1 change: 1 addition & 0 deletions docs/src/main/sphinx/connector/iceberg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ supports the following features:
* :doc:`/sql/insert`
* :doc:`/sql/delete`, see also :ref:`iceberg-delete`
* :doc:`/sql/update`
* :doc:`/sql/merge`
* :ref:`sql-schema-table-management`, see also :ref:`iceberg-tables`
* :ref:`sql-materialized-view-management`, see also
:ref:`iceberg-materialized-views`
Expand Down
1 change: 1 addition & 0 deletions docs/src/main/sphinx/connector/kudu.rst
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ statements, the connector supports the following features:

* :doc:`/sql/insert`, see also :ref:`kudu-insert`
* :doc:`/sql/delete`
* :doc:`/sql/merge`
* :doc:`/sql/create-table`, see also :ref:`kudu-create-table`
* :doc:`/sql/create-table-as`
* :doc:`/sql/drop-table`
Expand Down
1 change: 1 addition & 0 deletions docs/src/main/sphinx/language/sql-support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ Data management
* :doc:`/sql/update`
* :doc:`/sql/delete`
* :doc:`/sql/truncate`
* :doc:`/sql/merge`

.. _sql-materialized-view-management:

Expand Down