HappenLee commented on code in PR #19345:
URL: https://github.com/apache/doris/pull/19345#discussion_r1188206294
##########
fe/fe-core/src/main/java/org/apache/doris/analysis/SetVar.java:
##########
@@ -155,7 +155,14 @@ public void analyze(Analyzer analyzer) throws
AnalysisException, UserException {
this.value = new
StringLiteral(TimeUtils.checkTimeZoneValidAndStandardize(getValue().getStringValue()));
this.result = (LiteralExpr) this.value;
}
-
+ if
(getVariable().equalsIgnoreCase(SessionVariable.PARALLEL_FRAGMENT_EXEC_INSTANCE_NUM))
{
+ int instanceNum = Integer.parseInt(getValue().getStringValue());
+ if (instanceNum > 96) {
Review Comment:
change 96 be a fe config
--
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]