From f355d37c67e9e6e2829340559cb34b68c128bc70 Mon Sep 17 00:00:00 2001 From: liuyq-617 Date: Mon, 4 Jan 2021 19:21:13 +0800 Subject: [PATCH] fix --- tests/pytest/functions/function_first.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/pytest/functions/function_first.py b/tests/pytest/functions/function_first.py index 8c08a87ace..5b2aacb779 100644 --- a/tests/pytest/functions/function_first.py +++ b/tests/pytest/functions/function_first.py @@ -110,6 +110,7 @@ class TDTestCase: tdSql.query("select first(col9) from test1") tdSql.checkRows(1) tdSql.checkData(0, 0, '涛思数据1') + # TD-2607 first,last + where none exist condition + interval tdSql.query("select first(*),last(*) from test1 where ts < 23 interval(1s)") tdSql.checkRows(0) -- GitLab