You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2022/04/03 04:55:36 UTC

[dolphinscheduler] branch dev updated: [Doc] There are some version errors in the 2.0.1-release (#9335)

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

zhongjiajie 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 3c5568c  [Doc] There are some version errors in the 2.0.1-release (#9335)
3c5568c is described below

commit 3c5568c16cbbadd609f2c08e07710900d95100f4
Author: xiangzihao <46...@qq.com>
AuthorDate: Sun Apr 3 12:55:25 2022 +0800

    [Doc] There are some version errors in the 2.0.1-release (#9335)
---
 docs/docs/en/faq.md | 9 +++++++++
 docs/docs/zh/faq.md | 9 +++++++++
 2 files changed, 18 insertions(+)

diff --git a/docs/docs/en/faq.md b/docs/docs/en/faq.md
index d643d1e..c920dfa 100644
--- a/docs/docs/en/faq.md
+++ b/docs/docs/en/faq.md
@@ -705,4 +705,13 @@ DELETE FROM t_ds_task_definition_log WHERE id IN
 
 ---
 
+## Q:Upgrade from 2.0.1 to 2.0.5 using PostgreSQL database failed
+
+A:The repair can be completed by executing the following SQL in the database:
+```SQL
+update t_ds_version set version='2.0.1';
+```
+
+---
+
 ## We will collect more FAQ later
\ No newline at end of file
diff --git a/docs/docs/zh/faq.md b/docs/docs/zh/faq.md
index 45b9e11..f76853c 100644
--- a/docs/docs/zh/faq.md
+++ b/docs/docs/zh/faq.md
@@ -686,4 +686,13 @@ DELETE FROM t_ds_task_definition_log WHERE id IN
 
 ---
 
+## Q:使用Postgresql数据库从2.0.1升级至2.0.5更新失败
+
+A:在数据库中执行以下SQL即可完成修复:
+```SQL
+update t_ds_version set version='2.0.1';
+```
+
+---
+
 我们会持续收集更多的 FAQ。
\ No newline at end of file