This is an automated email from the ASF dual-hosted git repository.

kxiao pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new e87ead83d05 [fix](regression-test) fix result not stable for 
test_show_statistic_proc (#29523) (#29845)
e87ead83d05 is described below

commit e87ead83d055eeecce49eb070964425da026e250
Author: camby <[email protected]>
AuthorDate: Thu Jan 11 17:08:56 2024 +0800

    [fix](regression-test) fix result not stable for test_show_statistic_proc 
(#29523) (#29845)
---
 regression-test/suites/show_p0/test_show_statistic_proc.groovy | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/regression-test/suites/show_p0/test_show_statistic_proc.groovy 
b/regression-test/suites/show_p0/test_show_statistic_proc.groovy
index 192acf7647b..04ac987091f 100644
--- a/regression-test/suites/show_p0/test_show_statistic_proc.groovy
+++ b/regression-test/suites/show_p0/test_show_statistic_proc.groovy
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-suite("test_show_statistic_proc", "show") {
+suite("test_show_statistic_proc", "nonConcurrent") {
 
     sql """drop user if exists test_show_statistic_proc_user1"""
 
@@ -31,8 +31,8 @@ suite("test_show_statistic_proc", "show") {
         sql """ show proc '/statistic' """
     }
     def result2 = connect(user = 'test_show_statistic_proc_user1', password = 
'12345', url = context.config.jdbcUrl) {
-            sql """ show databases """
-        }
+        sql """ show databases """
+    }
     assertEquals(result1.size(), result2.size())
     assertEquals(result1[result1.size() - 1][1].toInteger(), result2.size() - 
1)
     def containsTargetDb = false


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to