This is an automated email from the ASF dual-hosted git repository. zhongjiajie pushed a commit to branch 3.0.4-prepare in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit eb704f8185408fae95e890fcf3c5072cb66c8dc4 Author: Sakura-2019 <[email protected]> AuthorDate: Wed Dec 28 15:01:25 2022 +0800 [Bug-12868][UI] Data target type is only HDFS (#12902) Co-authored-by: Jay Chung <[email protected]> (cherry picked from commit 08052af7a17767dd9fcde7fd313e63f92ab0d4e5) --- .../projects/task/components/node/fields/use-sqoop-target-type.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sqoop-target-type.ts b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sqoop-target-type.ts index 5949def7ba..74530678d3 100644 --- a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sqoop-target-type.ts +++ b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sqoop-target-type.ts @@ -61,6 +61,10 @@ export function useTargetType( case 'MYSQL': if (srcQueryType === '1') { return [ + { + label: 'HIVE', + value: 'HIVE' + }, { label: 'HDFS', value: 'HDFS'
