diff --git a/presto-docs/src/main/sphinx/sql/analyze.rst b/presto-docs/src/main/sphinx/sql/analyze.rst index 5d91a928b7fdb..e1369254aa099 100644 --- a/presto-docs/src/main/sphinx/sql/analyze.rst +++ b/presto-docs/src/main/sphinx/sql/analyze.rst @@ -21,7 +21,8 @@ connector-specific properties. To list all available properties, run the followi SELECT * FROM system.metadata.analyze_properties Currently, this statement is only supported by the -:ref:`Hive connector `. +:ref:`Hive connector ` and +:doc:`Iceberg connector <../connector/iceberg>`. Examples -------- @@ -34,6 +35,10 @@ Analyze table ``stores`` in catalog ``hive`` and schema ``default``:: ANALYZE hive.default.stores; +Analyze table ``stores`` in catalog ``iceberg`` and schema ``default``:: + + ANALYZE iceberg.default.stores; + Analyze partitions ``'1992-01-01', '1992-01-02'`` from a Hive partitioned table ``sales``:: ANALYZE hive.default.sales WITH (partitions = ARRAY[ARRAY['1992-01-01'], ARRAY['1992-01-02']]);