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