fix: case passed
This commit is contained in:
parent
c5f5aca4ce
commit
cb4cb936d3
|
@ -70,7 +70,7 @@ class TDTestCase(TBase):
|
||||||
sql = "select * from stb where ic!=105"
|
sql = "select * from stb where ic!=105"
|
||||||
tdSql.query(sql)
|
tdSql.query(sql)
|
||||||
tdSql.checkRows(0)
|
tdSql.checkRows(0)
|
||||||
sql = "select * from stb where b!i=106"
|
sql = "select * from stb where bi!=106"
|
||||||
tdSql.query(sql)
|
tdSql.query(sql)
|
||||||
tdSql.checkRows(0)
|
tdSql.checkRows(0)
|
||||||
sql = "select * from stb where uti!=107"
|
sql = "select * from stb where uti!=107"
|
||||||
|
@ -97,10 +97,16 @@ class TDTestCase(TBase):
|
||||||
# check all columns correct
|
# check all columns correct
|
||||||
cnt = self.insert_rows * self.childtable_count
|
cnt = self.insert_rows * self.childtable_count
|
||||||
sql = "select * from stb where bc!=1"
|
sql = "select * from stb where bc!=1"
|
||||||
|
tdSql.query(sql)
|
||||||
|
tdSql.checkRows(0)
|
||||||
|
sql = "select * from stb where bc is null"
|
||||||
|
tdSql.query(sql)
|
||||||
tdSql.checkRows(6)
|
tdSql.checkRows(6)
|
||||||
sql = "select * from stb where bc=1"
|
sql = "select * from stb where bc=1"
|
||||||
|
tdSql.query(sql)
|
||||||
tdSql.checkRows(cnt)
|
tdSql.checkRows(cnt)
|
||||||
sql = "select * from stb where usi!=108"
|
sql = "select * from stb where usi!=108"
|
||||||
|
tdSql.query(sql)
|
||||||
tdSql.checkRows(6)
|
tdSql.checkRows(6)
|
||||||
|
|
||||||
# run
|
# run
|
||||||
|
|
Loading…
Reference in New Issue