This is an automated email from the ASF dual-hosted git repository.
dataroaring 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 429af016dd [fix](test) donot use same table name in a database (#15931)
429af016dd is described below
commit 429af016dd26927b9795f0c0085186ffbcc89b69
Author: Yongqiang YANG <[email protected]>
AuthorDate: Sun Jan 15 00:01:33 2023 +0800
[fix](test) donot use same table name in a database (#15931)
---
.../query_p0/type_inference/test_binary_predicate_cast.groovy | 6 +++---
regression-test/suites/query_p0/type_inference/test_largeint.groovy | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git
a/regression-test/suites/query_p0/type_inference/test_binary_predicate_cast.groovy
b/regression-test/suites/query_p0/type_inference/test_binary_predicate_cast.groovy
index c3e7b6d72d..b3cb45ca1a 100644
---
a/regression-test/suites/query_p0/type_inference/test_binary_predicate_cast.groovy
+++
b/regression-test/suites/query_p0/type_inference/test_binary_predicate_cast.groovy
@@ -17,7 +17,7 @@
suite("test_binary_predicate_cast") {
sql """
- CREATE TABLE IF NOT EXISTS test_demo
+ CREATE TABLE IF NOT EXISTS test_binary_predicate_cast
(
`user_id` LARGEINT NOT NULL COMMENT "用户id",
`phone` LARGEINT COMMENT "用户电话"
@@ -28,9 +28,9 @@ sql """
"replication_allocation" = "tag.location.default: 1"
);
"""
-sql """insert into test_demo values
(10003,195456789345678955654444443875),(10003,195456789345678955654444443874),(10003,195456789345678955654444443873),(10003,195456789345678955654444443877),(10003,195456789345678955654444443878),(10004,195456789345678955654444443878),(10005,195456789345678955654444443877),(10006,195456789345678955654444443878),(10009,195456789345678955654444443878)
+sql """insert into test_binary_predicate_cast values
(10003,195456789345678955654444443875),(10003,195456789345678955654444443874),(10003,195456789345678955654444443873),(10003,195456789345678955654444443877),(10003,195456789345678955654444443878),(10004,195456789345678955654444443878),(10005,195456789345678955654444443877),(10006,195456789345678955654444443878),(10009,195456789345678955654444443878)
"""
-qt_test_largeint_string "select * from test_demo where
phone='195456789345678955654444443878' order by user_id"
+qt_test_largeint_string "select * from test_binary_predicate_cast where
phone='195456789345678955654444443878' order by user_id"
}
diff --git
a/regression-test/suites/query_p0/type_inference/test_largeint.groovy
b/regression-test/suites/query_p0/type_inference/test_largeint.groovy
index 3716331d39..d5cbfa4b47 100644
--- a/regression-test/suites/query_p0/type_inference/test_largeint.groovy
+++ b/regression-test/suites/query_p0/type_inference/test_largeint.groovy
@@ -16,7 +16,7 @@
// under the License.
suite("test_largeint") {
- def tbName = "test_demo"
+ def tbName = "test_largeint"
sql "DROP TABLE IF EXISTS ${tbName}"
sql """
CREATE TABLE IF NOT EXISTS ${tbName}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]