diff --git a/presto-docs/src/main/sphinx/connector/iceberg.rst b/presto-docs/src/main/sphinx/connector/iceberg.rst index 9bc1349aad84d..ff457768fc2ee 100644 --- a/presto-docs/src/main/sphinx/connector/iceberg.rst +++ b/presto-docs/src/main/sphinx/connector/iceberg.rst @@ -1926,6 +1926,16 @@ Iceberg tables do not support running multiple :doc:`../sql/merge` statements on Failed to commit Iceberg update to table: 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 ---------------- diff --git a/presto-docs/src/main/sphinx/sql/analyze.rst b/presto-docs/src/main/sphinx/sql/analyze.rst index e1369254aa099..bdcb793bc849c 100644 --- a/presto-docs/src/main/sphinx/sql/analyze.rst +++ b/presto-docs/src/main/sphinx/sql/analyze.rst @@ -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 ` and -:doc:`Iceberg connector <../connector/iceberg>`. +:ref:`Iceberg connector `. Examples --------