This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new 1ab22a330f4 branch-4.0: [fix](dictionary): use correct property key
when parsing memory_limit in CreateDictionaryInfo(#60306) #60309 (#60434)
1ab22a330f4 is described below
commit 1ab22a330f4f2b37d7cf3de622c712924480cfce
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Feb 3 10:43:20 2026 +0800
branch-4.0: [fix](dictionary): use correct property key when parsing
memory_limit in CreateDictionaryInfo(#60306) #60309 (#60434)
Cherry-picked from #60309
Co-authored-by: foxtail463 <[email protected]>
Co-authored-by: yangtao555 <[email protected]>
---
.../doris/nereids/trees/plans/commands/info/CreateDictionaryInfo.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/info/CreateDictionaryInfo.java
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/info/CreateDictionaryInfo.java
index 55f9608f16a..9e18e41c2a0 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/info/CreateDictionaryInfo.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/info/CreateDictionaryInfo.java
@@ -236,7 +236,7 @@ public class CreateDictionaryInfo {
}
if (properties.containsKey("memory_limit")) {
- memoryLimit = Long.parseLong(properties.get("data_lifetime"));
+ memoryLimit = Long.parseLong(properties.get("memory_limit"));
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]