[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:
@ -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}"; """
|
||||
|
||||
Reference in New Issue
Block a user