This is an automated email from the ASF dual-hosted git repository.
kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new fef1a7e [Fix-4760][api] Repair dolphinscheduler-postgre.sql error sql
(#4774)
fef1a7e is described below
commit fef1a7ef21a811771565aee3e7cba9bd77cfa868
Author: Shiwen Cheng <[email protected]>
AuthorDate: Mon Feb 15 23:38:42 2021 +0800
[Fix-4760][api] Repair dolphinscheduler-postgre.sql error sql (#4774)
---
sql/dolphinscheduler-postgre.sql | 7 ++++---
sql/dolphinscheduler_mysql.sql | 2 +-
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/sql/dolphinscheduler-postgre.sql b/sql/dolphinscheduler-postgre.sql
index b242205..6d6d60b 100644
--- a/sql/dolphinscheduler-postgre.sql
+++ b/sql/dolphinscheduler-postgre.sql
@@ -767,9 +767,10 @@ INSERT INTO t_ds_user(user_name, user_password, user_type,
email, phone, tenant_
VALUES ('admin', '7ad2410b2f4c074479a8937a28a22b8f', '0', '[email protected]', '',
'0', 1, '2018-03-27 15:48:50',
'2018-10-24 17:40:22');
--- Records of t_ds_alertgroup,dolphinscheduler warning group
-INSERT INTO t_ds_alertgroup(id,alert_instance_ids, create_user_id, group_name,
description, create_time, update_time)
-VALUES (1,'1,2', 1, 'default admin warning group', 'default admin warning
group', '2018-11-29 10:20:39', '2018-11-29 10:20:39');
+-- Records of t_ds_alertgroup, default admin warning group
+INSERT INTO t_ds_alertgroup(alert_instance_ids, create_user_id, group_name,
description, create_time, update_time)
+VALUES ('1,2', 1, 'default admin warning group', 'default admin warning
group', '2018-11-29 10:20:39',
+ '2018-11-29 10:20:39');
-- Records of t_ds_queue,default queue name : default
INSERT INTO t_ds_queue(queue_name, queue, create_time, update_time)
diff --git a/sql/dolphinscheduler_mysql.sql b/sql/dolphinscheduler_mysql.sql
index bb6588d..79964b7 100644
--- a/sql/dolphinscheduler_mysql.sql
+++ b/sql/dolphinscheduler_mysql.sql
@@ -812,7 +812,7 @@ VALUES ('1', '1.3.0');
-- Records of t_ds_alertgroup
-- ----------------------------
INSERT INTO `t_ds_alertgroup`
-VALUES (1,"1,2", 1, 'default admin warning group', 'default admin warning
group', '2018-11-29 10:20:39',
+VALUES ("1,2", 1, 'default admin warning group', 'default admin warning
group', '2018-11-29 10:20:39',
'2018-11-29 10:20:39');
-- ----------------------------