pingchunzhang commented on code in PR #47224: URL: https://github.com/apache/doris/pull/47224#discussion_r1922991939
########## regression-test/suites/show_data_p2/test_table_operation/test_cloud_delete_table_rows_show_data.groovy: ########## @@ -164,33 +163,39 @@ suite("test_cloud_delete_table_rows_show_data","p2") { assertEquals(sizeRecords["cbsSize"][0], sizeRecords["cbsSize"][1]) sql """delete from ${tableName} where L_ORDERKEY >=0;""" - sizeRecords["apiSize"].add(caculate_table_data_size_through_api(tablets)) - sizeRecords["cbsSize"].add(caculate_table_data_size_in_backend_storage(tablets)) - sizeRecords["mysqlSize"].add(show_table_data_size_through_mysql(tableName)) // 加一下触发compaction的机制 trigger_compaction(tablets) // 然后 sleep 1min, 等fe汇报完 - sleep(60 * 1000) + sleep(10 * 1000) sql "select count(*) from ${tableName}" + sleep(10 * 1000) + sizeRecords["apiSize"].add(caculate_table_data_size_through_api(tablets)) + sizeRecords["cbsSize"].add(caculate_table_data_size_in_backend_storage(tablets)) + sizeRecords["mysqlSize"].add(show_table_data_size_through_mysql(tableName)) // expect mysqlSize == apiSize == storageSize + logger.info("after delete, mysqlSize is: ${sizeRecords["mysqlSize"][2]}, apiSize is: ${sizeRecords["apiSize"][2]}, storageSize is: ${sizeRecords["cbsSize"][2]}") assertEquals(sizeRecords["mysqlSize"][2], sizeRecords["apiSize"][2]) assertEquals(sizeRecords["mysqlSize"][2], sizeRecords["cbsSize"][2]) } def main = { def tableName = "test_cloud_delete_table_rows_show_data" Review Comment: dynamic table not check? -- 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