From a03433154ce68daef33f066a46b65b5c812814e0 Mon Sep 17 00:00:00 2001 From: Yongqiang YANG Date: Tue, 19 Nov 2024 15:18:20 +0800 Subject: [PATCH] [fix](test) logging result of show tablet to investigate problem (#44224) --- 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;"""