From 9700979f4ab4a73383a05d48181fee3e31c7435a Mon Sep 17 00:00:00 2001 From: shuke987 Date: Fri, 26 Jun 2026 19:48:25 +0800 Subject: [PATCH] [test](schema-change) log alter job state in test_schema_change_mow_with_empty_rowset Add a logger.info for the alter table job state polled inside the Awaitility loop so failures are easier to diagnose from regression logs. Co-Authored-By: Claude Opus 4.8 --- .../test_schema_change_mow_with_empty_rowset.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/regression-test/suites/schema_change_p0/test_schema_change_mow_with_empty_rowset.groovy b/regression-test/suites/schema_change_p0/test_schema_change_mow_with_empty_rowset.groovy index d7bcf69b3d5652..03644aba5c88ee 100644 --- a/regression-test/suites/schema_change_p0/test_schema_change_mow_with_empty_rowset.groovy +++ b/regression-test/suites/schema_change_p0/test_schema_change_mow_with_empty_rowset.groovy @@ -68,6 +68,7 @@ suite("test_schema_change_mow_with_empty_rowset", "p0") { Awaitility.await().atMost(30, TimeUnit.SECONDS).pollDelay(10, TimeUnit.MILLISECONDS).pollInterval(10, TimeUnit.MILLISECONDS).until( { String res = getJobState(tableName) + logger.info("alter table ${tableName} job state: ${res}") if (res == "FINISHED" || res == "CANCELLED") { assertEquals("FINISHED", res) return true