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
7 changes: 6 additions & 1 deletion presto-docs/src/main/sphinx/sql/analyze.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <hive_analyze>`.
:ref:`Hive connector <hive_analyze>` and
:doc:`Iceberg connector <../connector/iceberg>`.
Comment thread
steveburnett marked this conversation as resolved.

Examples
--------
Expand All @@ -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']]);
Expand Down
Loading