This is an automated email from the ASF dual-hosted git repository.
kerwin pushed a commit to branch 3.1.3-release
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/3.1.3-release by this push:
new 4993ef0344 fix mapper table name t_ds_fav_task (#13334)
4993ef0344 is described below
commit 4993ef034475abf3e7b28a2f1d0d8591449f74a2
Author: Tq <[email protected]>
AuthorDate: Wed Jan 4 15:39:16 2023 +0800
fix mapper table name t_ds_fav_task (#13334)
---
.../org/apache/dolphinscheduler/dao/mapper/FavTaskMapper.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/FavTaskMapper.xml
b/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/FavTaskMapper.xml
index c5da1bf7a9..891529bb04 100644
---
a/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/FavTaskMapper.xml
+++
b/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/FavTaskMapper.xml
@@ -21,13 +21,13 @@
<select id="getUserFavTaskTypes" resultType="string">
select task_name
- from t_ds_fav
+ from t_ds_fav_task
where user_id = #{userId}
</select>
<delete id="deleteUserFavTask">
delete
- from t_ds_fav
+ from t_ds_fav_task
where user_id = #{userId}
and task_name = #{taskName}
</delete>