Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Oct 30, 2024
1 parent 2a6d6c1 commit a1cb9f9
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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}"; """
Expand Down

0 comments on commit a1cb9f9

Please sign in to comment.