Skip to content

Commit 59d2471

Browse files
[regresion-test](fix) fix cache plugin bug (apache#47827)
### What problem does this PR solve? Issue Number: close #xxx Related PR: introduced by apache#47785
1 parent e2ff89e commit 59d2471

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

regression-test/plugins/cloud_filecache_plugin.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ Suite.metaClass.show_cache_hotspot = { String computeGroup = null, String table
104104
res = sql_return_maparray """${select_table_hotspot}"""
105105
}
106106

107-
if ( computeGroup != null && table = null) {
107+
if ( computeGroup != null && table == null) {
108108
res = sql_return_maparray """${select_compute_group_hotspot}"""
109109
}
110110

111-
if ( computeGroup = null && table = null) {
111+
if ( computeGroup == null && table == null) {
112112
res = sql_return_maparray """${select_all_hotspot}"""
113113
}
114114
return res

0 commit comments

Comments
 (0)