Skip to content

Commit

Permalink
Merge branch 'master' into nereids_alter_database_set_quota
Browse files Browse the repository at this point in the history
  • Loading branch information
vinlee19 authored Jan 10, 2025
2 parents 0e42024 + 78f0dbe commit 3ade80a
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions regression-test/suites/node_p0/test_frontend.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,17 @@
// under the License.

suite("test_frontend", "nonConcurrent") {
def res = sql """SHOW FRONTENDS DISKS"""
assertTrue(res.size() != 0)

def res2 = sql """SHOW FRONTENDS Disks"""
assertTrue(res2.size() != 0)

if (Config.isCloudMode()) {
// In the test_sql_mode_node_mgr regression case, there is already a similar and more complex case. This case is redundant. Additionally, there is a 5-minute limit for dropping FE on the cloud.
// so ignore it in cloud
return;
}
def address = "127.0.0.1"
def notExistPort = 12345

Expand Down Expand Up @@ -43,10 +54,4 @@ suite("test_frontend", "nonConcurrent") {
result = sql """SHOW FRONTENDS;"""
logger.debug("result:${result}")
}

def res = sql """SHOW FRONTENDS DISKS"""
assertTrue(res.size() != 0)

def res2 = sql """SHOW FRONTENDS Disks"""
assertTrue(res2.size() != 0)
}

0 comments on commit 3ade80a

Please sign in to comment.