yiguolei commented on code in PR #28141:
URL: https://github.com/apache/doris/pull/28141#discussion_r1419152655
##########
fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java:
##########
@@ -1842,6 +1844,23 @@ public void setMaxExecutionTimeMS(String
maxExecutionTimeMS) {
this.queryTimeoutS = this.maxExecutionTimeMS / 1000;
}
+ public void checkPipelineTaskNum(String value) throws Exception {
+ checkFieldValue("parallel_pipeline_task_num", 0, value);
Review Comment:
It is a setter method.
You should do :
1. check if the value is valid
2. parse and set the value
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]