This is an automated email from the ASF dual-hosted git repository.
hellostephen 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 59d247125ad [regresion-test](fix) fix cache plugin bug (#47827)
59d247125ad is described below
commit 59d247125ada4f928396877b5288a8a4f642d6cc
Author: chunping <[email protected]>
AuthorDate: Wed Feb 12 16:59:55 2025 +0800
[regresion-test](fix) fix cache plugin bug (#47827)
### What problem does this PR solve?
Issue Number: close #xxx
Related PR: introduced by #47785
---
regression-test/plugins/cloud_filecache_plugin.groovy | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/regression-test/plugins/cloud_filecache_plugin.groovy
b/regression-test/plugins/cloud_filecache_plugin.groovy
index b41e83f4cfc..09346f535c0 100644
--- a/regression-test/plugins/cloud_filecache_plugin.groovy
+++ b/regression-test/plugins/cloud_filecache_plugin.groovy
@@ -104,11 +104,11 @@ Suite.metaClass.show_cache_hotspot = { String
computeGroup = null, String table
res = sql_return_maparray """${select_table_hotspot}"""
}
- if ( computeGroup != null && table = null) {
+ if ( computeGroup != null && table == null) {
res = sql_return_maparray """${select_compute_group_hotspot}"""
}
- if ( computeGroup = null && table = null) {
+ if ( computeGroup == null && table == null) {
res = sql_return_maparray """${select_all_hotspot}"""
}
return res
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]