github-actions[bot] commented on code in PR #61842:
URL: https://github.com/apache/doris/pull/61842#discussion_r3007636824


##########
regression-test/suites/query_p0/set_operations/except.groovy:
##########
@@ -16,12 +16,6 @@
 // under the License.
 
 suite("except", "query") {
-    sql """

Review Comment:
   Bug: The entire SQL block was removed, but it contained 2 non-nereids 
settings that are needed for this test:
   - `set runtime_filter_type=2` (default is 12)
   - `set enable_runtime_filter_prune=false` (default is true)
   
   The `.out` file expects plan shapes with `RFV2` annotations that depend on 
`runtime_filter_type=2`. Without these settings, the plan shapes will differ 
and the test will fail.
   
   **Fix:** Add back these two settings as separate SQL statements:
   ```groovy
   suite("except", "query") {
       sql "set runtime_filter_type=2"
       sql "set enable_runtime_filter_prune=false"
   ```



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

Reply via email to