You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/08/03 01:25:53 UTC

[GitHub] [dolphinscheduler] zhuangchong commented on a diff in pull request #10869: [Improvement][SQL Task]use default sql segment separator

zhuangchong commented on code in PR #10869:
URL: https://github.com/apache/dolphinscheduler/pull/10869#discussion_r936156314


##########
dolphinscheduler-spi/src/main/java/org/apache/dolphinscheduler/spi/enums/DbType.java:
##########
@@ -74,4 +74,12 @@ public static DbType ofName(String name) {
     public boolean isHive() {
         return this == DbType.HIVE;
     }
+
+    /**
+     * support execute multiple segmented statements at a time
+     * @return
+     */
+    public boolean isSupportMultipleStatement() {
+        return isHive();
+    }

Review Comment:
   Spark data sources also support.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org