You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by GitBox <gi...@apache.org> on 2021/12/03 04:56:54 UTC

[GitHub] [incubator-kyuubi] pan3793 commented on a change in pull request #1491: [KYUUBI #1490] Introduce the basic framework for running scala

pan3793 commented on a change in pull request #1491:
URL: https://github.com/apache/incubator-kyuubi/pull/1491#discussion_r761646287



##########
File path: kyuubi-common/src/main/scala/org/apache/kyuubi/config/KyuubiConf.scala
##########
@@ -1049,4 +1049,20 @@ object KyuubiConf {
       .transform(_.toUpperCase(Locale.ROOT))
       .checkValues(OperationModes.values.map(_.toString))
       .createWithDefault(OperationModes.NONE.toString)
+
+  object OperationLanguages extends Enumeration {
+    type OperationLanguage = Value
+    val SQL, SCALA = Value
+  }
+
+  val OPERATION_LANGUAGE: ConfigEntry[String] =

Review comment:
       We have a ENGINE_TPYE which can be SPARK_SQL and FLINK_SQL, seems not accurate now




-- 
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@kyuubi.apache.org

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