morrySnow commented on code in PR #1972:
URL: https://github.com/apache/doris-website/pull/1972#discussion_r1944481586


##########
docs/sql-manual/sql-statements/table-and-view/data-and-status-management/SHOW-TABLET-STORAGE-FORMAT.md:
##########
@@ -27,34 +27,68 @@ under the License.
 
 ## Description
 
-This statement is used to display tablet storage foramt information (for 
administrators only)
+This statement is used to display storage format information on the Backend.
 
-Grammar:
-    
-`SHOW TABLET STORAGE FORMAT [VERBOSE]`
-
-## Example
+## Syntax
 
 ```sql
-MySQL [(none)]> show tablet storage format;
-+-----------+---------+---------+
-| BackendId | V1Count | V2Count |
-+-----------+---------+---------+
-| 10002     | 0       | 2867    |
-+-----------+---------+---------+
-1 row in set (0.003 sec)
-MySQL [test_query_qa]> show tablet storage format verbose;
-+-----------+----------+---------------+
-| BackendId | TabletId | StorageFormat |
-+-----------+----------+---------------+
-| 10002     | 39227    | V2            |
-| 10002     | 39221    | V2            |
-| 10002     | 39215    | V2            |
-| 10002     | 39199    | V2            |
-+-----------+----------+---------------+
-4 rows in set (0.034 sec)
+SHOW TABLET STORAGE FORMAT [VERBOSE]
 ```
 
-## Keywords
-    SHOW, TABLET, STORAGE, FORMAT
 
+## Optional Parameters
+
+- VERBOSE

Review Comment:
   格式不对
   ```suggestion
   ** 1. VERBOSE **
   ```



##########
docs/sql-manual/sql-statements/table-and-view/data-and-status-management/ADMIN-CHECK-TABLET.md:
##########
@@ -0,0 +1,80 @@
+---
+{
+    "title": "ADMIN CHECK TABLET",
+    "language": "en"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+## Description
+
+This statement is used to perform the specified check operation on a set of 
tablets.
+
+## Syntax
+
+```sql
+ADMIN CHECK TABLET ( <tablet_id> [,...] ) PROPERTIES("type" = "<type_value>")
+```
+
+## Required Parameters
+
+**1. `<tablet_id>`**
+
+The ID of the tablet on which the specified check operation will be performed.
+
+
+## Optional Parameters
+
+**1. `<type_value>`**
+
+Currently, only consistency is supported.
+
+- consistency:
+
+  Checks the replica data consistency of the tablet. This command is 
asynchronous, meaning that after sending it, Doris will start executing the 
consistency check job for the corresponding tablet.
+
+## Return Value
+
+The final result of the statement will be reflected in the InconsistentNum 
column of the result from `SHOW PROC "/cluster_health/tablet_health";`.
+
+| Column          | DataType | Note                                 |
+|-----------------|----------|--------------------------------------|
+| InconsistentNum | Int      | Number of tablets with inconsistency |
+
+
+## Access Control Requirements
+
+The user executing this SQL command must have at least the following 
privileges:
+
+| Privilege  | Object   | Notes                                                
                                                                            |
+|:-----------|:---------|:---------------------------------------------------------------------------------------------------------------------------------|
+| Admin_priv | Database | Required to execute administrative operations on the 
database, including managing tables, partitions, and system-level commands. |
+
+## Examples
+- Perform a replica data consistency check on a specified set of tablets
+
+  ```sql
+  admin check tablet (10000, 10001) PROPERTIES("type" = "consistency");
+  ```
+  
+  ```text
+  Query OK, 0 rows affected (0.00 sec)
+  ```

Review Comment:
   不需要这个空的返回结果,删掉就可以了



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to