This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new 009fb2287cc branch-4.1: [fix](test) skip test_temp_table (temp table
feature no longer maintained, backport of #64525) (#64607)
009fb2287cc is described below
commit 009fb2287cc750bc119d97b9ac6c8374fc38afd7
Author: shuke <[email protected]>
AuthorDate: Wed Jun 17 21:26:35 2026 +0800
branch-4.1: [fix](test) skip test_temp_table (temp table feature no longer
maintained, backport of #64525) (#64607)
## What problem does this PR solve?
Back-ports the `skip temp_table_p0/test_temp_table.groovy` decision from
branch-4.0 #64525 to branch-4.1. The temporary-table feature is **no
longer
maintained**, so the suite is skipped (early `return`) rather than kept
as a
chronically-flaky Cloud-P0 case (it is the highest-frequency muted
failure on
branch-4.1 Cloud-P0).
```groovy
suite('test_temp_table', 'p0') {
if (true) {
// temp table feature is no longer mantains. skip this case
return
}
...
```
Test-only change.
## Cherry-picked from branch-4.0 #64525 (with `-x` provenance)
- `skip temp_table_p0/test_temp_table.groovy`
## Note
Supersedes the temp_table replica-detection deflake that is part of
#64597 — once
this lands, that commit in #64597 becomes dead code (unreachable after
the early
return) and can be dropped from #64597.
## Release note
None
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: morningman <[email protected]>
---
regression-test/suites/temp_table_p0/test_temp_table.groovy | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/regression-test/suites/temp_table_p0/test_temp_table.groovy
b/regression-test/suites/temp_table_p0/test_temp_table.groovy
index f1ce95e4830..79218478127 100644
--- a/regression-test/suites/temp_table_p0/test_temp_table.groovy
+++ b/regression-test/suites/temp_table_p0/test_temp_table.groovy
@@ -16,6 +16,10 @@
// under the License.
suite('test_temp_table', 'p0') {
+ if (true) {
+ // temp table feature is no longer mantains. skip this case
+ return
+ }
sql """
DROP TABLE IF EXISTS `t_test_table_with_data`
"""
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]