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

yiguolei 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 352a3819bf [regression test]grade datatype cases to p0 to test p0 
pipeline (#11208)
352a3819bf is described below

commit 352a3819bf823846998ba14f951abdda545caad7
Author: Yongqiang YANG <[email protected]>
AuthorDate: Wed Jul 27 08:21:23 2022 +0800

    [regression test]grade datatype cases to p0 to test p0 pipeline (#11208)
---
 .../{datatype => datatype_p0}/bitmap/test_bitmap_int.out    | Bin
 .../complex_types/basic_agg_test.out                        |   0
 .../date/test_date_in_predicate.out                         |   0
 .../data/{datatype => datatype_p0}/hll/test_hll_int.out     |   0
 .../{datatype => datatype_p0}/string/test_string_basic.out  |   0
 .../{datatype => datatype_p0}/bitmap/test_bitmap_int.groovy |   2 +-
 .../complex_types/basic_agg_test.groovy                     |   0
 .../date/test_date_in_predicate.groovy                      |   2 +-
 .../{datatype => datatype_p0}/hll/test_hll_int.groovy       |   2 +-
 .../string/test_string_basic.groovy                         |   2 +-
 10 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/regression-test/data/datatype/bitmap/test_bitmap_int.out 
b/regression-test/data/datatype_p0/bitmap/test_bitmap_int.out
similarity index 100%
rename from regression-test/data/datatype/bitmap/test_bitmap_int.out
rename to regression-test/data/datatype_p0/bitmap/test_bitmap_int.out
diff --git a/regression-test/data/datatype/complex_types/basic_agg_test.out 
b/regression-test/data/datatype_p0/complex_types/basic_agg_test.out
similarity index 100%
rename from regression-test/data/datatype/complex_types/basic_agg_test.out
rename to regression-test/data/datatype_p0/complex_types/basic_agg_test.out
diff --git a/regression-test/data/datatype/date/test_date_in_predicate.out 
b/regression-test/data/datatype_p0/date/test_date_in_predicate.out
similarity index 100%
rename from regression-test/data/datatype/date/test_date_in_predicate.out
rename to regression-test/data/datatype_p0/date/test_date_in_predicate.out
diff --git a/regression-test/data/datatype/hll/test_hll_int.out 
b/regression-test/data/datatype_p0/hll/test_hll_int.out
similarity index 100%
rename from regression-test/data/datatype/hll/test_hll_int.out
rename to regression-test/data/datatype_p0/hll/test_hll_int.out
diff --git a/regression-test/data/datatype/string/test_string_basic.out 
b/regression-test/data/datatype_p0/string/test_string_basic.out
similarity index 100%
rename from regression-test/data/datatype/string/test_string_basic.out
rename to regression-test/data/datatype_p0/string/test_string_basic.out
diff --git a/regression-test/suites/datatype/bitmap/test_bitmap_int.groovy 
b/regression-test/suites/datatype_p0/bitmap/test_bitmap_int.groovy
similarity index 97%
rename from regression-test/suites/datatype/bitmap/test_bitmap_int.groovy
rename to regression-test/suites/datatype_p0/bitmap/test_bitmap_int.groovy
index 3837d834f1..5caf55db13 100644
--- a/regression-test/suites/datatype/bitmap/test_bitmap_int.groovy
+++ b/regression-test/suites/datatype_p0/bitmap/test_bitmap_int.groovy
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-suite("test_bitmap_int", "datatype") {
+suite("test_bitmap_int") {
     sql "DROP TABLE IF EXISTS test_int_bitmap"
     sql """
         CREATE TABLE test_int_bitmap (`id` int, `bitmap_set` bitmap 
bitmap_union) 
diff --git 
a/regression-test/suites/datatype/complex_types/basic_agg_test.groovy 
b/regression-test/suites/datatype_p0/complex_types/basic_agg_test.groovy
similarity index 100%
rename from regression-test/suites/datatype/complex_types/basic_agg_test.groovy
rename to regression-test/suites/datatype_p0/complex_types/basic_agg_test.groovy
diff --git a/regression-test/suites/datatype/date/test_date_in_predicate.groovy 
b/regression-test/suites/datatype_p0/date/test_date_in_predicate.groovy
similarity index 97%
rename from regression-test/suites/datatype/date/test_date_in_predicate.groovy
rename to regression-test/suites/datatype_p0/date/test_date_in_predicate.groovy
index 6fc5c1dbac..3a32c495af 100644
--- a/regression-test/suites/datatype/date/test_date_in_predicate.groovy
+++ b/regression-test/suites/datatype_p0/date/test_date_in_predicate.groovy
@@ -16,7 +16,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-suite("test_date_in_predicate", "datatype") {
+suite("test_date_in_predicate") {
     def tbName = "test_date_in_predicate"
     sql "DROP TABLE IF EXISTS ${tbName}"
     sql """
diff --git a/regression-test/suites/datatype/hll/test_hll_int.groovy 
b/regression-test/suites/datatype_p0/hll/test_hll_int.groovy
similarity index 97%
rename from regression-test/suites/datatype/hll/test_hll_int.groovy
rename to regression-test/suites/datatype_p0/hll/test_hll_int.groovy
index 5797d3c729..58c7f8ed40 100644
--- a/regression-test/suites/datatype/hll/test_hll_int.groovy
+++ b/regression-test/suites/datatype_p0/hll/test_hll_int.groovy
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-suite("test_hll_int", "datatype") {
+suite("test_hll_int") {
     sql "DROP TABLE IF EXISTS test_int_hll"
     sql """
         CREATE TABLE test_int_hll (`id` int COMMENT "", `hll_set` hll 
hll_union COMMENT "") 
diff --git a/regression-test/suites/datatype/string/test_string_basic.groovy 
b/regression-test/suites/datatype_p0/string/test_string_basic.groovy
similarity index 98%
rename from regression-test/suites/datatype/string/test_string_basic.groovy
rename to regression-test/suites/datatype_p0/string/test_string_basic.groovy
index 50b38f0d20..5d6b517f96 100644
--- a/regression-test/suites/datatype/string/test_string_basic.groovy
+++ b/regression-test/suites/datatype_p0/string/test_string_basic.groovy
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-suite("test_string_basic", "datatype") {
+suite("test_string_basic") {
     sql "drop table if exists fail_tb1"
     // first column could not be string
     test {


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

Reply via email to