From 856ada1b410258dc289560e49620659976ae4162 Mon Sep 17 00:00:00 2001 From: liuyq-617 Date: Wed, 30 Dec 2020 13:18:38 +0800 Subject: [PATCH] [TD-2457]bottom+interval+order by --- tests/pytest/functions/function_bottom.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/pytest/functions/function_bottom.py b/tests/pytest/functions/function_bottom.py index 4074166f92..5e570dc8e0 100644 --- a/tests/pytest/functions/function_bottom.py +++ b/tests/pytest/functions/function_bottom.py @@ -85,6 +85,9 @@ class TDTestCase: tdSql.checkData(0, 1, 0.1) tdSql.checkData(1, 1, 1.1) + #TD-2457 bottom + interval + order by + tdSql.error('select top(col2,1) from test interval(1y) order by col2;') + def stop(self): tdSql.close() tdLog.success("%s successfully executed" % __file__) -- GitLab