This is an automated email from the ASF dual-hosted git repository.
dataroaring 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 7d99ec22a29 (cloud-merge) Fix double show the property
`file_cache_ttl_seconds` (#38052)
7d99ec22a29 is described below
commit 7d99ec22a29bb0e1c143a6a10a113f3baaebe957
Author: Lightman <[email protected]>
AuthorDate: Thu Jul 18 21:33:10 2024 +0800
(cloud-merge) Fix double show the property `file_cache_ttl_seconds` (#38052)
There has two place to append the property `file_cache_ttl_seconds`, cut
out a place.
---
fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java | 5 -----
1 file changed, 5 deletions(-)
diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
b/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
index 94d1d5c4cfa..c999024d359 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
@@ -3446,11 +3446,6 @@ public class Env {
sb.append(olapTable.getDataSortInfo().toSql());
}
- if (olapTable.getTTLSeconds() != 0) {
-
sb.append(",\n\"").append(PropertyAnalyzer.PROPERTIES_FILE_CACHE_TTL_SECONDS).append("\"
= \"");
- sb.append(olapTable.getTTLSeconds()).append("\"");
- }
-
// in memory
if (olapTable.isInMemory()) {
sb.append(",\n\"").append(PropertyAnalyzer.PROPERTIES_INMEMORY).append("\" =
\"");
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]