diqiu50 commented on code in PR #9101:
URL: https://github.com/apache/gravitino/pull/9101#discussion_r2532427680


##########
integration-test-common/docker-script/init/mysql/init.sql:
##########
@@ -225,3 +225,11 @@ CREATE TABLE 
gt_mysql_test_column_properties.demo_default_value_with_expression
   timestamp_col_1 timestamp default CURRENT_TIMESTAMP,
   timestamp_col_2 timestamp(6) default CURRENT_TIMESTAMP(6)
 );
+CREATE DATABASE gt_mysql_test_table_statistics;
+CREATE TABLE gt_mysql_test_table_statistics.table01
+(
+  key1 int PRIMARY KEY,
+  value1 int
+);
+INSERT INTO gt_mysql_test_table_statistics.table01 VALUES (1, 1), (2, 2);
+ANALYZE TABLE gt_mysql_test_table_statistics.table01;

Review Comment:
   It is not appropriate to add this to the script, as it will affect other 
tests. I suggest removing it.



-- 
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]

Reply via email to