From 8d45b04d69244bacdeece8a5464c394ceb694878 Mon Sep 17 00:00:00 2001 From: factosea <285808407@qq.com> Date: Fri, 3 Jan 2025 16:34:20 +0800 Subject: [PATCH] test case --- tests/system-test/2-query/cols_function.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/system-test/2-query/cols_function.py b/tests/system-test/2-query/cols_function.py index 2f46051bb7..d843b5959c 100644 --- a/tests/system-test/2-query/cols_function.py +++ b/tests/system-test/2-query/cols_function.py @@ -441,7 +441,11 @@ class TDTestCase: tdSql.checkData(1, 3, 2) tdSql.checkData(1, 4, 4) + # todo 1 , has same select function outof cols func #select cols(last_row(c0), ts as t1, c1 as c11), cols(first(c0), ts as t2, c1 c21), first(c0) from test.meters where c0 < 4; + # todo 2, sub query has cols func + # select * from (select cols(last_row(c0), ts as t1, c1 as c11), cols(first(c0), ts as t2, c1 c21), first(c0) from test.meters where c0 < 4); + # todo 3, cols on system table def funcSupperTableTest(self): tdSql.execute('create database if not exists db;')