This is an automated email from the ASF dual-hosted git repository.
suxiaogang223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 4eb013c29f7 [fix](paimon) tolerate removed paimon-cpp session variable
(#67472)
4eb013c29f7 is described below
commit 4eb013c29f78add70992ce7d84084c422bb91771
Author: Socrates <[email protected]>
AuthorDate: Fri Sep 4 11:39:51 2026 +0800
[fix](paimon) tolerate removed paimon-cpp session variable (#67472)
### What problem does this PR solve?
Issue Number: N/A
Related PR: #67385
After removing `enable_paimon_cpp_reader`, older clients and replayed
state may still reference it. Add the name to
`REMOVED_SESSION_VAR_NAMES` so existing compatibility handling silently
ignores SET and tolerates reads instead of reporting an unknown system
variable.
### Release note
None
### Check List (For Author)
- Test:
- [x] No local test needed; this is a one-entry compatibility allowlist
update.
- [x] `git diff --check`
- Behavior changed:
- [x] Yes. References to the removed variable are tolerated.
- Does this need documentation:
- [x] No
---
fe/fe-core/src/main/java/org/apache/doris/qe/VariableMgr.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/VariableMgr.java
b/fe/fe-core/src/main/java/org/apache/doris/qe/VariableMgr.java
index 9dc60db134a..4706f2cac53 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/qe/VariableMgr.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/qe/VariableMgr.java
@@ -154,6 +154,7 @@ public class VariableMgr {
"enable_common_expr_pushdown_for_inverted_index",
"enable_phrase_query_sequential_opt",
"enable_rust_lance_reader",
+ "enable_paimon_cpp_reader",
"shuffled_agg_node_ids",
"plan_nereids_dump");
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]