englefly commented on code in PR #13990:
URL: https://github.com/apache/doris/pull/13990#discussion_r1018854750
##########
fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java:
##########
@@ -1139,24 +1139,22 @@ public void setEnableNereidsStatsDeriveV2(boolean
enableNereidsStatsDeriveV2) {
this.enableNereidsStatsDeriveV2 = enableNereidsStatsDeriveV2;
}
- /**
- * Serialize to thrift object.
- * Used for rest api.
- **/
- public boolean isEnableRemoveNoConjunctsRuntimeFilterPolicy() {
- return enableRemoveNoConjunctsRuntimeFilterPolicy;
+ public boolean isEnableRuntimeFilterPrune() {
+ return enableRuntimeFilterPrune;
}
- public void setEnableRemoveNoConjunctsRuntimeFilterPolicy(boolean
enableRemoveNoConjunctsRuntimeFilterPolicy) {
- this.enableRemoveNoConjunctsRuntimeFilterPolicy =
enableRemoveNoConjunctsRuntimeFilterPolicy;
+ public void setEnableRuntimeFilterPrune(boolean enableRuntimeFilterPrune) {
+ this.enableRuntimeFilterPrune = enableRuntimeFilterPrune;
}
public void setFragmentTransmissionCompressionCodec(String codec) {
this.fragmentTransmissionCompressionCodec = codec;
}
- // Serialize to thrift object
- // used for rest api
+ /**
+ * Serialize to thrift object.
+ * Used for rest api.
+ **/
Review Comment:
done
--
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]