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


##########
docs/sql-manual/sql-statements/table-and-view/table/SHOW-TABLE-STATUS.md:
##########
@@ -43,26 +43,26 @@ SHOW TABLE STATUS [ FROM [ <catalog_name>.]<db_name> ] [ 
LIKE <like_condition> ]
 
 ## Return value
 
-| Column          | Data Type     | Notes                                      
  |
-|:----------------|:--------------|:---------------------------------------------|
-| Name            | String        | Table name                                 
  |
-| Engine          | String        | Table engine                               
  |
-| Version         | String        | Table version                              
  |
-| Row_format      | String        | table row's format                         
  |
-| Rows            | String        | Number of rows in the table                
  |
-| Avg_row_length  | Integer       | Average length of each row of data         
  |
-| Data_length     | Integer       | Data size of the table                     
  |
-| Max_data_length | Integer       | Maximum length of the data row             
  |
-| Index_length    | Integer       | Length of the index                        
  |
-| Data_free       |               |                                            
  |
-| Auto_increment  |               |                                            
  |
-| Create_time     | Datetime      | Creation time                              
  |
-| Update_time     | Datetime      | Update time                                
  |
-| Check_time      | Datetime      | Check time                                 
  |
-| Collation       | Character set | Character set, currently only supports 
utf-8 |
-| Checksum        | String        | Table Checksum                             
  |
-| Create_options  | string        | Table options                              
  |
-| Comment         | string        | Table comment                              
  |
+| Column              | DataType        | Notes                                
                                                                                
                                                                                
                     |
+|:--------------------|:----------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Name                | String          | Table name                           
                                                                                
                                                                                
                     |
+| Engine              | String          | Storage engine for the table         
                                                                                
                                                                                
                     |
+| Version             | String          | Version                              
                                                                                
                                                                                
                     |
+| Row_format          | String          | Row format. For the MyISAM engine, 
this may be Dynamic, Fixed, or Compressed. Dynamic rows have variable length, 
such as Varchar or Blob type fields. Fixed rows have fixed length, such as Char 
and Integer type fields. |
+| Rows                | String          | Number of rows in the table. For 
non-transactional tables, this value is exact, for transactional engines, this 
value is usually estimated.                                                     
                          |
+| Avg_row_length      | Integer         | Average number of bytes per row      
                                                                                
                                                                                
                     |
+| Data_length         | Integer         | The amount of data in the entire 
table (in bytes)                                                                
                                                                                
                         |
+| Max_data_length     | Integer         | The maximum amount of data that a 
table can hold                                                                  
                                                                                
                        |
+| Index_length        | Integer         | The amount of disk space occupied by 
an index                                                                        
                                                                                
                     |
+| Data_free           | Integer         | For the MyISAM engine, identifies 
the space that has been allocated but is now unused, and includes the space for 
deleted rows.                                                                   
                        |
+| Auto_increment      | Integer         | The value of the next Auto_increment 
                                                                                
                                                                                
                     |
+| Create_time         | Datetime        | The creation time of the table       
                                                                                
                                                                                
                     |
+| Update_time         | Datetime        | The last update time of the table    
                                                                                
                                                                                
                     |
+| Check_time          | Datetime        | The last time to check the table 
using the check table or myisamchk tool                                         
                                                                                
                         |
+| Collation           | Character set   | The default character set of the 
table, currently only supports utf-8                                            
                                                                                
                         |

Review Comment:
   Doris 没有 Character set 这个类型。我们直接把DataType 这一列删了吧



-- 
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: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to