diff --git a/tests/army/community/query/function/test_fun_elapsed.py b/tests/army/community/query/function/test_fun_elapsed.py index 0279e92704..fe1cecc8f2 100644 --- a/tests/army/community/query/function/test_fun_elapsed.py +++ b/tests/army/community/query/function/test_fun_elapsed.py @@ -394,7 +394,6 @@ class TDTestCase(TBase): tdSql.error("select elapsed(max(ts), 1s) from st1 group by tbname order by ts;") tdSql.error("select elapsed(first(ts), 1s) from st1 group by tbname order by ts;") tdSql.error("select elapsed(last(ts), 1s) from st1 group by tbname order by ts;") - # other error tdSql.error("select elapsed(ts, 1s) from t1 where ts between '2023-03-01 15:00:00.000' and '2023-03-01 15:01:40.000' interval(10s) fill(next) union select elapsed(ts, 1s) from st2 where ts between '2023-03-01 15:00:00.000' and '2023-03-01 15:01:49.000' interval(5s) fill(prev) group by tbname;") tdSql.error("select elapsed(time ,1s) from (select elapsed(ts,1s) time from st1);")