shuke987 opened a new pull request, #64510:
URL: https://github.com/apache/doris/pull/64510
## Problem
This global check iterates over **all** databases/tables and builds
statements like `show create table ${tblName}` without backticks. When another
suite leaves behind a table named with a reserved word (e.g. `order`), the
statement becomes `show create table order` → `mismatched input 'order'`, which
fails the whole check. This only triggers under the full P0 pipeline
(cross-suite residue), not when the suite runs in isolation.
## Fix
Backtick all db / table / partition identifiers (`use`, `desc`, `show create
table`, `show partitions`, `show replica status`, and the `select ... from
db.table`).
## Verification
Ran the suite on a branch-4.1 local cluster — passes.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
--
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]