From 8360d6a12b126b4a82152f50898ed288fc87f5c5 Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Sun, 4 Feb 2024 18:01:27 +0800 Subject: [PATCH] fix: check null value --- tests/army/community/storage/oneStageComp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/army/community/storage/oneStageComp.py b/tests/army/community/storage/oneStageComp.py index 8860220673..9a2c7cfcd6 100644 --- a/tests/army/community/storage/oneStageComp.py +++ b/tests/army/community/storage/oneStageComp.py @@ -105,7 +105,7 @@ class TDTestCase(TBase): sql = "select * from stb where bc=1" tdSql.query(sql) tdSql.checkRows(cnt) - sql = "select * from stb where usi!=108" + sql = "select * from stb where usi is null" tdSql.query(sql) tdSql.checkRows(6)