This is an automated email from the ASF dual-hosted git repository.

alexpl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 511736b175e IGNITE-18946 Fix refresh command about the statistic in 
the ddl doc - Fixes #10578.
511736b175e is described below

commit 511736b175ed929039b6732250836fc8a1928488
Author: chenjian2664 <[email protected]>
AuthorDate: Fri Mar 3 09:00:17 2023 +0300

    IGNITE-18946 Fix refresh command about the statistic in the ddl doc - Fixes 
#10578.
    
    Signed-off-by: Aleksey Plekhanov <[email protected]>
---
 docs/_docs/sql-reference/ddl.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/_docs/sql-reference/ddl.adoc 
b/docs/_docs/sql-reference/ddl.adoc
index d365bce0be4..180d7cae5a2 100644
--- a/docs/_docs/sql-reference/ddl.adoc
+++ b/docs/_docs/sql-reference/ddl.adoc
@@ -612,13 +612,13 @@ Possible parameters:
 * SIZE - Average size of column values (in bytes).
 * DISTINCT - Number of distinct non-null values in column.
 
-== REFRESH
+== REFRESH STATISTICS
 
 The command refreshes link:SQL/sql-statistics[statistics,window=_blank].
 
 [source,sql]
 ----
-REFRESH 'schemaName'.'tableName'(column1, column2);
+REFRESH STATISTICS 'schemaName'.'tableName'(column1, column2);
 ----
 
 Parameters:
@@ -633,7 +633,7 @@ Example:
 
 [source,sql]
 ----
-REFRESH PRODUCTS, SALE(productId, discount)
+REFRESH STATISTICS PRODUCTS, SALE(productId, discount)
 ----
 
 == DROP STATISTICS

Reply via email to