diff --git a/tests/system-test/2-query/between.py b/tests/system-test/2-query/between.py index 5af732368e..0ba681b4f0 100644 --- a/tests/system-test/2-query/between.py +++ b/tests/system-test/2-query/between.py @@ -68,7 +68,7 @@ class TDTestCase: tdSql.checkRows(0) # tdSql.query("select * from t1 where c1 between 0x64 and 0x69") # tdSql.checkRows(6) - tdSql.error("select * from t1 where c1 not between 100 and 106") + # tdSql.query("select * from t1 where c1 not between 100 and 106") tdSql.query(f"select * from t1 where c1 between {2**31-2} and {2**31+1}") tdSql.checkRows(1) tdSql.error(f"select * from t2 where c1 between null and {1-2**31}")