You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ki...@apache.org on 2021/08/07 05:30:44 UTC

[dolphinscheduler] branch dev updated: [IMPROVEMENT]fix mysql comment error (#5959)

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/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new f061487  [IMPROVEMENT]fix mysql comment error (#5959)
f061487 is described below

commit f061487f464c7ff5a258f3d8367854f440df4e08
Author: yimaixinchen <yi...@163.com>
AuthorDate: Sat Aug 7 13:30:38 2021 +0800

    [IMPROVEMENT]fix mysql comment error (#5959)
---
 sql/create/release-1.0.0_schema/mysql/dolphinscheduler_ddl.sql | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sql/create/release-1.0.0_schema/mysql/dolphinscheduler_ddl.sql b/sql/create/release-1.0.0_schema/mysql/dolphinscheduler_ddl.sql
index ac0851a..f82bb75 100644
--- a/sql/create/release-1.0.0_schema/mysql/dolphinscheduler_ddl.sql
+++ b/sql/create/release-1.0.0_schema/mysql/dolphinscheduler_ddl.sql
@@ -113,9 +113,9 @@ CREATE TABLE `t_escheduler_master_server` (
   `host` varchar(45) DEFAULT NULL COMMENT 'ip',
   `port` int(11) DEFAULT NULL COMMENT 'port',
   `zk_directory` varchar(64) DEFAULT NULL COMMENT 'the server path in zk directory',
-  `res_info` varchar(256) DEFAULT NULL COMMENT 'json resource information:{"cpu":xxx,"memroy":xxx}',
+  `res_info` varchar(255) DEFAULT NULL COMMENT 'json resource information:{"cpu":xxx,"memory":xxx}',
   `create_time` datetime DEFAULT NULL COMMENT 'create time',
-  `last_heartbeat_time` datetime DEFAULT NULL COMMENT 'last head beat time',
+  `last_heartbeat_time` datetime DEFAULT NULL COMMENT 'last heart beat time',
   PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;