yaooqinn commented on a change in pull request #1967:
URL: https://github.com/apache/incubator-kyuubi/pull/1967#discussion_r812967985



##########
File path: 
kyuubi-common/src/main/scala/org/apache/kyuubi/config/KyuubiConf.scala
##########
@@ -1148,6 +1148,15 @@ object KyuubiConf {
       .checkValues(OperationModes.values.map(_.toString))
       .createWithDefault(OperationModes.NONE.toString)
 
+  val OPERATION_PLAN_ONLY_SKIP: ConfigEntry[Seq[String]] =
+    buildConf("operation.plan.only.skip")
+      .doc("Skipped statements or commands in a PARSE, ANALYZE, OPTIMIZE, 
PHYSICAL, EXECUTION " +
+        "only way without executing the query.")
+      .version("1.5.0")
+      .stringConf
+      .toSequence()
+      .createWithDefault(Nil)

Review comment:
       Let add the Plans that match set/reset/use here to keep the backward 
compatibility and better UX.




-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to