[fix](regression) do not test "set global sessionVar" on multi-fe cluster (#42922)

## Proposed changes
fix unstable rt case: test_statistic_global_variable

Issue Number: close #xxx

<!--Describe your changes.-->
This commit is contained in:
minghong
2024-10-30 21:35:32 +08:00
committed by GitHub
parent e43d255815
commit 6d23020cb8

View File

@ -17,6 +17,12 @@
suite("test_statistic_global_variable", "nonConcurrent") {
def frontends = sql "show frontends"
if (frontends.size() != 1) {
return
}
def verifyVairable = { variable, value ->
sql """set global ${variable}="${value}";"""
def result = sql """show variables like "${variable}"; """