fix: test case
This commit is contained in:
parent
4779f4a16f
commit
faaaa243af
|
@ -15,6 +15,15 @@ class TDTestCase:
|
|||
|
||||
tdCases.taosBenchmarkExec("-t 2 -n 1000000 -b int,float,nchar -y")
|
||||
|
||||
while True:
|
||||
tdSql.query("select d0.ts from test.d0;")
|
||||
num1 = tdSql.queryRows
|
||||
tdSql.query("select d0.ts from test.d1;")
|
||||
num2 = tdSql.queryRows
|
||||
if num1 == 1000000 and num2 == 1000000:
|
||||
break
|
||||
time.sleep(1)
|
||||
|
||||
def ts5803(self):
|
||||
tdSql.query("select d0.ts,d0.c1,d0.c2 from test.d0 join test.d1 on d0.ts=d1.ts;")
|
||||
num1 = tdSql.queryRows
|
||||
|
|
Loading…
Reference in New Issue