You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2022/12/28 14:14:27 UTC

[doris] branch master updated: [fix](primary_index) not compare result in regression case: primary_index/test_pk_uk_case (#15436)

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

morrysnow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 6f200e0ef6 [fix](primary_index) not compare result in regression case: primary_index/test_pk_uk_case (#15436)
6f200e0ef6 is described below

commit 6f200e0ef6f67640b8df52bae4f57de3e28e2c24
Author: minghong <en...@gmail.com>
AuthorDate: Wed Dec 28 22:14:20 2022 +0800

    [fix](primary_index) not compare result in regression case: primary_index/test_pk_uk_case (#15436)
---
 regression-test/suites/primary_index/test_pk_uk_case.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/regression-test/suites/primary_index/test_pk_uk_case.groovy b/regression-test/suites/primary_index/test_pk_uk_case.groovy
index 9403d5e92c..1ae47e3b10 100644
--- a/regression-test/suites/primary_index/test_pk_uk_case.groovy
+++ b/regression-test/suites/primary_index/test_pk_uk_case.groovy
@@ -246,7 +246,7 @@ suite("test_pk_uk_case") {
         for (int i = 0; i < result0.size(); ++i) {
             for (j = 0; j < result0[0].size(); j++) {
                 logger.info("result: " + result0[i][j] + "|" + result1[i][j])
-                assertTrue(result0[0]==result1[0])
+                assertTrue(result0[i][j]==result1[i][j])
             }
         }       
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org