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



##########
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 " +

Review comment:
       Comma-separated list of query plan names, in the form of simple class 
names, i.e, for `set abc=xyz`, the value will be `SetCommand`. For those 
auxiliary plans, such as `switch databases`, `set properties`, or `create 
temporary view` e.t.c, which are used for setup evaluating environments for 
analyzing actual queries, we can use this config to exclude them and let them 
take effect. See also `kyuubi.operation.plan.only.mode`.




-- 
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