add case for csum

This commit is contained in:
wenzhouwww@live.cn 2022-05-28 16:45:59 +08:00
parent 017c2d1205
commit efdca5ab2e
1 changed files with 4 additions and 1 deletions

View File

@ -131,6 +131,9 @@ class TDTestCase:
for i in range(tdSql.queryRows): for i in range(tdSql.queryRows):
print(f"case in {line}: ", end='') print(f"case in {line}: ", end='')
if pre_csum[i] >1.7e+308 or pre_csum[i] < -1.7e+308:
continue
else:
tdSql.checkData(i, 0, pre_csum[i]) tdSql.checkData(i, 0, pre_csum[i])
pass pass