Skip to content
Merged
10 changes: 10 additions & 0 deletions presto-docs/src/main/sphinx/connector/iceberg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1926,6 +1926,16 @@ Iceberg tables do not support running multiple :doc:`../sql/merge` statements on
Failed to commit Iceberg update to table: <table name>
Found conflicting files that can contain records matching true

.. _iceberg_analyze:

Collecting table and column statistics
--------------------------------------

The Iceberg connector supports collection of table and column statistics
with the :doc:`/sql/analyze` statement::

ANALYZE iceberg.tpch.orders;

Schema Evolution
----------------

Expand Down
2 changes: 1 addition & 1 deletion presto-docs/src/main/sphinx/sql/analyze.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ connector-specific properties. To list all available properties, run the followi

Currently, this statement is only supported by the
:ref:`Hive connector <hive_analyze>` and
:doc:`Iceberg connector <../connector/iceberg>`.
:ref:`Iceberg connector <iceberg_analyze>`.

Examples
--------
Expand Down
Loading