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 4b6552e929 [fix](regression) create table failed in 'map_agg' (#24030)
4b6552e929 is described below
commit 4b6552e929ee0334d0d3ef3464a2f464f3210d66
Author: Jerry Hu <[email protected]>
AuthorDate: Thu Sep 7 20:14:07 2023 +0800
[fix](regression) create table failed in 'map_agg' (#24030)
Co-authored-by: yiguolei <[email protected]>
---
regression-test/suites/query_p0/aggregate/map_agg.groovy | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/regression-test/suites/query_p0/aggregate/map_agg.groovy
b/regression-test/suites/query_p0/aggregate/map_agg.groovy
index a29ee5003f..ae165cc64a 100644
--- a/regression-test/suites/query_p0/aggregate/map_agg.groovy
+++ b/regression-test/suites/query_p0/aggregate/map_agg.groovy
@@ -18,7 +18,7 @@
suite("map_agg") {
sql "DROP TABLE IF EXISTS `test_map_agg`;"
sql """
- CREATE TABLE `test_map_agg` (
+ CREATE TABLE IF NOT EXISTS `test_map_agg` (
`id` int(11) NOT NULL,
`label_name` varchar(32) NOT NULL,
`value_field` string
@@ -56,7 +56,7 @@ suite("map_agg") {
sql "DROP TABLE IF EXISTS test_map_agg_nullable;"
sql """
- CREATE TABLE `test_map_agg_nullable` (
+ CREATE TABLE IF NOT EXISTS `test_map_agg_nullable` (
`id` int(11) NOT NULL,
`label_name` varchar(32) NULL,
`value_field` string
@@ -91,9 +91,9 @@ suite("map_agg") {
(5, "LC", "V5_3");
"""
- sql "DROP TABLE IF EXISTS `test_map_agg_string_key`;"
+ sql "DROP TABLE IF EXISTS `test_map_agg_numeric_key`;"
sql """
- CREATE TABLE `test_map_agg_numeric_key` (
+ CREATE TABLE IF NOT EXISTS `test_map_agg_numeric_key` (
`id` int(11) NOT NULL,
`label_name` bigint NOT NULL,
`value_field` string
@@ -131,7 +131,7 @@ suite("map_agg") {
sql "DROP TABLE IF EXISTS `test_map_agg_decimal`;"
sql """
- CREATE TABLE `test_map_agg_decimal` (
+ CREATE TABLE IF NOT EXISTS `test_map_agg_decimal` (
`id` int(11) NOT NULL,
`label_name` string NOT NULL,
`value_field` decimal(15,4)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]