From aa64b644d123265fecd6003f89a77fbbb83b6df6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Nov 2024 20:52:36 +0800 Subject: [PATCH] branch-3.0: [fix](test) logging result of show tablet to investigate problem #44224 (#44256) Cherry-picked from #44224 Co-authored-by: Yongqiang YANG --- regression-test/suites/show_p0/test_show_tablet.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/regression-test/suites/show_p0/test_show_tablet.groovy b/regression-test/suites/show_p0/test_show_tablet.groovy index 99a1e191369c56..59e7c1a8e4da2f 100644 --- a/regression-test/suites/show_p0/test_show_tablet.groovy +++ b/regression-test/suites/show_p0/test_show_tablet.groovy @@ -26,6 +26,8 @@ suite("test_show_tablet") { "replication_num" = "1" );""" def res = sql """SHOW TABLETS FROM show_tablets_test_t limit 5, 1;""" + + logger.info("result: " + res.toString()); assertTrue(res.size() == 0) res = sql """SHOW TABLETS FROM show_tablets_test_t limit 3, 5;"""