Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
zddr committed Jul 22, 2024
1 parent 1b523e1 commit 66c767e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions regression-test/suites/mtmv_p0/test_build_mtmv.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -500,12 +500,12 @@ suite("test_build_mtmv") {
sql """
DROP MATERIALIZED VIEW ${mvName}
"""
def jobs = sql """select count(1) from jobs("type"="mv") where name= '${jobName}'"""
def jobs = sql """select * from jobs("type"="mv") where MvName= '${mvName}'"""
log.info(jobs.toString())
assertEquals(jobs.get(0).get(0), 0);
def tasks = sql """select count(1) from tasks("type"="mv") where jobname = '${jobName}'"""
assertEquals(0, jobs.size());
def tasks = sql """select * from tasks("type"="mv") where MvName = '${mvName}'"""
log.info(tasks.toString())
assertEquals(tasks.get(0).get(0), 0);
assertEquals(0, tasks.size());

// test bitmap
sql """drop table if exists `${tableName}`"""
Expand Down

0 comments on commit 66c767e

Please sign in to comment.