log.py 33.1 KB
Newer Older
W
wenzhouwww@live.cn 已提交
1 2 3 4
import taos
import sys
import datetime
import inspect
W
wenzhouwww@live.cn 已提交
5
import math
W
wenzhouwww@live.cn 已提交
6 7 8 9 10 11 12
from util.log import *
from util.sql import *
from util.cases import *



class TDTestCase:
G
Ganlin Zhao 已提交
13
    updatecfgDict = {'debugFlag': 143 ,"cDebugFlag":143,"uDebugFlag":143 ,"rpcDebugFlag":143 , "tmrDebugFlag":143 ,
W
wenzhouwww@live.cn 已提交
14
    "jniDebugFlag":143 ,"simDebugFlag":143,"dDebugFlag":143, "dDebugFlag":143,"vDebugFlag":143,"mDebugFlag":143,"qDebugFlag":143,
15
    "wDebugFlag":143,"sDebugFlag":143,"tsdbDebugFlag":143,"tqDebugFlag":143 ,"fsDebugFlag":143 ,"udfDebugFlag":143}
W
wenzhouwww@live.cn 已提交
16 17 18
    def init(self, conn, logSql):
        tdLog.debug(f"start to excute {__file__}")
        tdSql.init(conn.cursor())
G
Ganlin Zhao 已提交
19

W
wenzhouwww@live.cn 已提交
20 21 22 23 24 25 26
    def prepare_datas(self):
        tdSql.execute(
            '''create table stb1
            (ts timestamp, c1 int, c2 bigint, c3 smallint, c4 tinyint, c5 float, c6 double, c7 bool, c8 binary(16),c9 nchar(32), c10 timestamp)
            tags (t1 int)
            '''
        )
G
Ganlin Zhao 已提交
27

W
wenzhouwww@live.cn 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
        tdSql.execute(
            '''
            create table t1
            (ts timestamp, c1 int, c2 bigint, c3 smallint, c4 tinyint, c5 float, c6 double, c7 bool, c8 binary(16),c9 nchar(32), c10 timestamp)
            '''
        )
        for i in range(4):
            tdSql.execute(f'create table ct{i+1} using stb1 tags ( {i+1} )')

        for i in range(9):
            tdSql.execute(
                f"insert into ct1 values ( now()-{i*10}s, {1*i}, {11111*i}, {111*i}, {11*i}, {1.11*i}, {11.11*i}, {i%2}, 'binary{i}', 'nchar{i}', now()+{1*i}a )"
            )
            tdSql.execute(
                f"insert into ct4 values ( now()-{i*90}d, {1*i}, {11111*i}, {111*i}, {11*i}, {1.11*i}, {11.11*i}, {i%2}, 'binary{i}', 'nchar{i}', now()+{1*i}a )"
            )
        tdSql.execute("insert into ct1 values (now()-45s, 0, 0, 0, 0, 0, 0, 0, 'binary0', 'nchar0', now()+8a )")
        tdSql.execute("insert into ct1 values (now()+10s, 9, -99999, -999, -99, -9.99, -99.99, 1, 'binary9', 'nchar9', now()+9a )")
        tdSql.execute("insert into ct1 values (now()+15s, 9, -99999, -999, -99, -9.99, NULL, 1, 'binary9', 'nchar9', now()+9a )")
        tdSql.execute("insert into ct1 values (now()+20s, 9, -99999, -999, NULL, -9.99, -99.99, 1, 'binary9', 'nchar9', now()+9a )")

        tdSql.execute("insert into ct4 values (now()-810d, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL ) ")
        tdSql.execute("insert into ct4 values (now()-400d, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL ) ")
        tdSql.execute("insert into ct4 values (now()+90d, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL  ) ")

        tdSql.execute(
            f'''insert into t1 values
            ( '2020-04-21 01:01:01.000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( '2020-10-21 01:01:01.000', 1, 11111, 111, 11, 1.11, 11.11, 1, "binary1", "nchar1", now()+1a )
            ( '2020-12-31 01:01:01.000', 2, 22222, 222, 22, 2.22, 22.22, 0, "binary2", "nchar2", now()+2a )
            ( '2021-01-01 01:01:06.000', 3, 33333, 333, 33, 3.33, 33.33, 0, "binary3", "nchar3", now()+3a )
            ( '2021-05-07 01:01:10.000', 4, 44444, 444, 44, 4.44, 44.44, 1, "binary4", "nchar4", now()+4a )
            ( '2021-07-21 01:01:01.000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( '2021-09-30 01:01:16.000', 5, 55555, 555, 55, 5.55, 55.55, 0, "binary5", "nchar5", now()+5a )
            ( '2022-02-01 01:01:20.000', 6, 66666, 666, 66, 6.66, 66.66, 1, "binary6", "nchar6", now()+6a )
            ( '2022-10-28 01:01:26.000', 7, 00000, 000, 00, 0.00, 00.00, 1, "binary7", "nchar7", "1970-01-01 08:00:00.000" )
            ( '2022-12-01 01:01:30.000', 8, -88888, -888, -88, -8.88, -88.88, 0, "binary8", "nchar8", "1969-01-01 01:00:00.000" )
            ( '2022-12-31 01:01:36.000', 9, -99999999999999999, -999, -99, -9.99, -999999999999999999999.99, 1, "binary9", "nchar9", "1900-01-01 00:00:00.000" )
            ( '2023-02-21 01:01:01.000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            '''
        )
69 70 71


    def check_result_auto_log(self ,origin_query , log_query):
G
Ganlin Zhao 已提交
72

73 74 75 76
        log_result = tdSql.getResult(log_query)
        origin_result = tdSql.getResult(origin_query)

        auto_result =[]
G
Ganlin Zhao 已提交
77

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
        for row in origin_result:
            row_check = []
            for elem in row:
                if elem == None:
                    elem = None
                elif elem >0:
                    elem = math.log(elem)
                elif elem <=0:
                    elem = None
                row_check.append(elem)
            auto_result.append(row_check)

        check_status = True
        for row_index , row in enumerate(log_result):
            for col_index , elem in enumerate(row):
                if auto_result[row_index][col_index] != elem:
G
Ganlin Zhao 已提交
94
                    check_status = False
95 96 97 98 99
        if not check_status:
            tdLog.notice("log function value has not as expected , sql is \"%s\" "%log_query )
            sys.exit(1)
        else:
            tdLog.info("log value check pass , it work as expected ,sql is \"%s\"   "%log_query )
G
Ganlin Zhao 已提交
100

W
wenzhouwww@live.cn 已提交
101 102 103 104 105 106
    def check_result_auto_log2(self ,origin_query , log_query):

        log_result = tdSql.getResult(log_query)
        origin_result = tdSql.getResult(origin_query)

        auto_result =[]
G
Ganlin Zhao 已提交
107

W
wenzhouwww@live.cn 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
        for row in origin_result:
            row_check = []
            for elem in row:
                if elem == None:
                    elem = None
                elif elem >0:
                    elem = math.log(elem,2)
                elif elem <=0:
                    elem = None
                row_check.append(elem)
            auto_result.append(row_check)

        check_status = True
        for row_index , row in enumerate(log_result):
            for col_index , elem in enumerate(row):
                if auto_result[row_index][col_index] != elem:
G
Ganlin Zhao 已提交
124
                    check_status = False
W
wenzhouwww@live.cn 已提交
125 126 127 128 129 130 131
        if not check_status:
            tdLog.notice("log function value has not as expected , sql is \"%s\" "%log_query )
            sys.exit(1)
        else:
            tdLog.info("log value check pass , it work as expected ,sql is \"%s\"   "%log_query )

    def check_result_auto_log1(self ,origin_query , log_query):
W
wenzhouwww@live.cn 已提交
132 133 134 135
        log_result = tdSql.getResult(log_query)
        origin_result = tdSql.getResult(origin_query)

        auto_result =[]
G
Ganlin Zhao 已提交
136

W
wenzhouwww@live.cn 已提交
137 138 139 140 141
        for row in origin_result:
            row_check = []
            for elem in row:
                if elem == None:
                    elem = None
W
wenzhouwww@live.cn 已提交
142 143 144 145 146 147 148 149 150 151 152
                elif elem >0:
                    elem = None
                elif elem <=0:
                    elem = None
                row_check.append(elem)
            auto_result.append(row_check)

        check_status = True
        for row_index , row in enumerate(log_result):
            for col_index , elem in enumerate(row):
                if auto_result[row_index][col_index] != elem:
G
Ganlin Zhao 已提交
153
                    check_status = False
W
wenzhouwww@live.cn 已提交
154 155 156 157 158 159 160 161 162 163
        if not check_status:
            tdLog.notice("log function value has not as expected , sql is \"%s\" "%log_query )
            sys.exit(1)
        else:
            tdLog.info("log value check pass , it work as expected ,sql is \"%s\"   "%log_query )
    def check_result_auto_log__10(self ,origin_query , log_query):
        log_result = tdSql.getResult(log_query)
        origin_result = tdSql.getResult(origin_query)

        auto_result =[]
G
Ganlin Zhao 已提交
164

W
wenzhouwww@live.cn 已提交
165 166 167 168 169 170 171 172 173
        for row in origin_result:
            row_check = []
            for elem in row:
                if elem == None:
                    elem = None
                elif elem >0:
                    elem = None
                elif elem <=0:
                    elem = None
W
wenzhouwww@live.cn 已提交
174 175 176 177 178 179 180
                row_check.append(elem)
            auto_result.append(row_check)

        check_status = True
        for row_index , row in enumerate(log_result):
            for col_index , elem in enumerate(row):
                if auto_result[row_index][col_index] != elem:
G
Ganlin Zhao 已提交
181
                    check_status = False
W
wenzhouwww@live.cn 已提交
182 183 184 185 186
        if not check_status:
            tdLog.notice("log function value has not as expected , sql is \"%s\" "%log_query )
            sys.exit(1)
        else:
            tdLog.info("log value check pass , it work as expected ,sql is \"%s\"   "%log_query )
G
Ganlin Zhao 已提交
187

W
wenzhouwww@live.cn 已提交
188 189 190 191 192 193 194 195 196 197 198
    def test_errors(self):
        error_sql_lists = [
            "select log from t1",
            # "select log(-+--+c1 ,2) from t1",
            # "select +-log(c1,2) from t1",
            # "select ++-log(c1,2) from t1",
            # "select ++--log(c1,2) from t1",
            # "select - -log(c1,2)*0 from t1",
            # "select log(tbname+1,2) from t1 ",
            "select log(123--123,2)==1 from t1",
            "select log(c1,2) as 'd1' from t1",
W
wenzhouwww@live.cn 已提交
199 200 201 202 203
            "select log(c1 ,c2 ,2) from t1",
            "select log(c1 ,NULL ,2) from t1",
            "select log(, 2) from t1;",
            "select log(log(c1, 2) ab from t1)",
            "select log(c1 ,2 ) as int from t1",
W
wenzhouwww@live.cn 已提交
204 205 206 207 208 209 210
            "select log from stb1",
            # "select log(-+--+c1) from stb1",
            # "select +-log(c1) from stb1",
            # "select ++-log(c1) from stb1",
            # "select ++--log(c1) from stb1",
            # "select - -log(c1)*0 from stb1",
            # "select log(tbname+1) from stb1 ",
W
wenzhouwww@live.cn 已提交
211 212 213 214
            "select log(123--123 ,2)==1 from stb1",
            "select log(c1 ,2) as 'd1' from stb1",
            "select log(c1 ,c2 ,2 ) from stb1",
            "select log(c1 ,NULL,2) from stb1",
W
wenzhouwww@live.cn 已提交
215
            "select log(,) from stb1;",
W
wenzhouwww@live.cn 已提交
216 217
            "select log(log(c1 , 2) ab from stb1)",
            "select log(c1 , 2) as int from stb1"
W
wenzhouwww@live.cn 已提交
218 219 220
        ]
        for error_sql in error_sql_lists:
            tdSql.error(error_sql)
G
Ganlin Zhao 已提交
221

W
wenzhouwww@live.cn 已提交
222 223
    def support_types(self):
        type_error_sql_lists = [
G
Ganlin Zhao 已提交
224
            "select log(ts ,2 ) from t1" ,
W
wenzhouwww@live.cn 已提交
225 226 227
            "select log(c7,c2 ) from t1",
            "select log(c8,c1 ) from t1",
            "select log(c9,c2 ) from t1",
G
Ganlin Zhao 已提交
228
            "select log(ts,c7 ) from ct1" ,
W
wenzhouwww@live.cn 已提交
229 230 231
            "select log(c7,c9 ) from ct1",
            "select log(c8,c2 ) from ct1",
            "select log(c9,c1 ) from ct1",
G
Ganlin Zhao 已提交
232
            "select log(ts,2 ) from ct3" ,
W
wenzhouwww@live.cn 已提交
233 234 235
            "select log(c7,2 ) from ct3",
            "select log(c8,2 ) from ct3",
            "select log(c9,2 ) from ct3",
G
Ganlin Zhao 已提交
236
            "select log(ts,2 ) from ct4" ,
W
wenzhouwww@live.cn 已提交
237 238 239
            "select log(c7,2 ) from ct4",
            "select log(c8,2 ) from ct4",
            "select log(c9,2 ) from ct4",
G
Ganlin Zhao 已提交
240
            "select log(ts,2 ) from stb1" ,
W
wenzhouwww@live.cn 已提交
241 242 243 244
            "select log(c7,2 ) from stb1",
            "select log(c8,2 ) from stb1",
            "select log(c9,2 ) from stb1" ,

G
Ganlin Zhao 已提交
245
            "select log(ts,2 ) from stbbb1" ,
W
wenzhouwww@live.cn 已提交
246 247 248 249
            "select log(c7,2 ) from stbbb1",

            "select log(ts,2 ) from tbname",
            "select log(c9,2 ) from tbname"
W
wenzhouwww@live.cn 已提交
250 251

        ]
G
Ganlin Zhao 已提交
252

W
wenzhouwww@live.cn 已提交
253 254
        for type_sql in type_error_sql_lists:
            tdSql.error(type_sql)
G
Ganlin Zhao 已提交
255 256


W
wenzhouwww@live.cn 已提交
257
        type_sql_lists = [
W
wenzhouwww@live.cn 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
            "select log(c1,2 ) from t1",
            "select log(c2,2 ) from t1",
            "select log(c3,2 ) from t1",
            "select log(c4,2 ) from t1",
            "select log(c5,2 ) from t1",
            "select log(c6,2 ) from t1",

            "select log(c1,2 ) from ct1",
            "select log(c2,2 ) from ct1",
            "select log(c3,2 ) from ct1",
            "select log(c4,2 ) from ct1",
            "select log(c5,2 ) from ct1",
            "select log(c6,2 ) from ct1",

            "select log(c1,2 ) from ct3",
            "select log(c2,2 ) from ct3",
            "select log(c3,2 ) from ct3",
            "select log(c4,2 ) from ct3",
            "select log(c5,2 ) from ct3",
            "select log(c6,2 ) from ct3",

            "select log(c1,2 ) from stb1",
            "select log(c2,2 ) from stb1",
            "select log(c3,2 ) from stb1",
            "select log(c4,2 ) from stb1",
            "select log(c5,2 ) from stb1",
            "select log(c6,2 ) from stb1",

G
Ganlin Zhao 已提交
286 287
            "select log(c6,2) as alisb from stb1",
            "select log(c6,2) alisb from stb1",
W
wenzhouwww@live.cn 已提交
288 289 290 291
        ]

        for type_sql in type_sql_lists:
            tdSql.query(type_sql)
G
Ganlin Zhao 已提交
292

W
wenzhouwww@live.cn 已提交
293 294
    def basic_log_function(self):

G
Ganlin Zhao 已提交
295
        # basic query
W
wenzhouwww@live.cn 已提交
296 297 298 299 300 301 302 303
        tdSql.query("select c1 from ct3")
        tdSql.checkRows(0)
        tdSql.query("select c1 from t1")
        tdSql.checkRows(12)
        tdSql.query("select c1 from stb1")
        tdSql.checkRows(25)

        # used for empty table  , ct3 is empty
304

W
wenzhouwww@live.cn 已提交
305
        tdSql.query("select log(c1 ,2) from ct3")
W
wenzhouwww@live.cn 已提交
306
        tdSql.checkRows(0)
W
wenzhouwww@live.cn 已提交
307
        tdSql.query("select log(c2 ,2) from ct3")
W
wenzhouwww@live.cn 已提交
308
        tdSql.checkRows(0)
W
wenzhouwww@live.cn 已提交
309
        tdSql.query("select log(c3 ,2) from ct3")
W
wenzhouwww@live.cn 已提交
310
        tdSql.checkRows(0)
W
wenzhouwww@live.cn 已提交
311
        tdSql.query("select log(c4 ,2) from ct3")
W
wenzhouwww@live.cn 已提交
312
        tdSql.checkRows(0)
W
wenzhouwww@live.cn 已提交
313
        tdSql.query("select log(c5 ,2) from ct3")
W
wenzhouwww@live.cn 已提交
314
        tdSql.checkRows(0)
W
wenzhouwww@live.cn 已提交
315 316 317 318 319 320
        tdSql.query("select log(c6 ,2) from ct3")
        tdSql.checkRows(0)


        # # used for regular table
        tdSql.query("select log(c1 ,2) from t1")
W
wenzhouwww@live.cn 已提交
321
        tdSql.checkData(0, 0, None)
W
wenzhouwww@live.cn 已提交
322 323
        tdSql.checkData(1 , 0, 0.000000000)
        tdSql.checkData(3 , 0, 1.584962501)
W
wenzhouwww@live.cn 已提交
324 325
        tdSql.checkData(5 , 0, None)

326 327 328 329 330 331 332
        tdSql.query("select log(c1) from t1")
        tdSql.checkData(0, 0, None)
        tdSql.checkData(1 , 0, 0.000000000)
        tdSql.checkData(2 , 0, 0.693147181)
        tdSql.checkData(3 , 0, 1.098612289)
        tdSql.checkData(4 , 0, 1.386294361)

W
wenzhouwww@live.cn 已提交
333 334 335 336
        tdSql.query("select c1, c2, c3 , c4, c5 from t1")
        tdSql.checkData(1, 4, 1.11000)
        tdSql.checkData(3, 3, 33)
        tdSql.checkData(5, 4, None)
W
wenzhouwww@live.cn 已提交
337

W
wenzhouwww@live.cn 已提交
338 339 340 341 342
        tdSql.query("select ts,c1, c2, c3 , c4, c5 from t1")
        tdSql.checkData(1, 5, 1.11000)
        tdSql.checkData(3, 4, 33)
        tdSql.checkData(5, 5, None)

343
        self.check_result_auto_log( "select c1, c2, c3 , c4, c5 from t1", "select log(c1), log(c2) ,log(c3), log(c4), log(c5) from t1")
W
wenzhouwww@live.cn 已提交
344 345 346
        self.check_result_auto_log2( "select c1, c2, c3 , c4, c5 from t1", "select log(c1 ,2), log(c2 ,2) ,log(c3, 2), log(c4 ,2), log(c5 ,2) from t1")
        self.check_result_auto_log1( "select c1, c2, c3 , c4, c5 from t1", "select log(c1 ,1), log(c2 ,1) ,log(c3, 1), log(c4 ,1), log(c5 ,1) from t1")
        self.check_result_auto_log__10( "select c1, c2, c3 , c4, c5 from t1", "select log(c1 ,-10), log(c2 ,-10) ,log(c3, -10), log(c4 ,-10), log(c5 ,-10) from t1")
G
Ganlin Zhao 已提交
347

W
wenzhouwww@live.cn 已提交
348
        # used for sub table
W
wenzhouwww@live.cn 已提交
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
        tdSql.query("select c1 ,log(c1 ,3) from ct1")
        tdSql.checkData(0, 1, 1.892789261)
        tdSql.checkData(1 , 1, 1.771243749)
        tdSql.checkData(3 , 1, 1.464973521)
        tdSql.checkData(4 , 1, None)

        # test bug fix for log(c1,c2)

        tdSql.query("select c1, c2 ,log(c1,c2) from ct1")
        tdSql.checkData(0 , 2, 0.182485070)
        tdSql.checkData(1 , 2, 0.172791608)
        tdSql.checkData(2 , 2, 0.161311499)
        tdSql.checkData(3 , 2, 0.147315235)
        tdSql.checkData(4 , 2, None)

364
        self.check_result_auto_log( "select c1, c2, c3 , c4, c5 from ct1", "select log(c1), log(c2) ,log(c3), log(c4), log(c5) from ct1")
W
wenzhouwww@live.cn 已提交
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
        self.check_result_auto_log2( "select c1, c2, c3 , c4, c5 from ct1", "select log(c1,2), log(c2,2) ,log(c3,2), log(c4,2), log(c5,2) from ct1")
        self.check_result_auto_log__10( "select c1, c2, c3 , c4, c5 from ct1", "select log(c1,-10), log(c2,-10) ,log(c3,-10), log(c4,-10), log(c5,-10) from ct1")

        # nest query for log functions
        tdSql.query("select c1  , log(c1,3) ,log(log(c1,3),3) , log(log(log(c1,3),3),3) from ct1;")
        tdSql.checkData(0 , 0 , 8)
        tdSql.checkData(0 , 1 , 1.892789261)
        tdSql.checkData(0 , 2 , 0.580779541)
        tdSql.checkData(0 , 3 , -0.494609470)

        tdSql.checkData(1 , 0 , 7)
        tdSql.checkData(1 , 1 , 1.771243749)
        tdSql.checkData(1 , 2 , 0.520367366)
        tdSql.checkData(1 , 3 , -0.594586689)

        tdSql.checkData(4 , 0 , 0)
        tdSql.checkData(4 , 1 , None)
        tdSql.checkData(4 , 2 , None)
        tdSql.checkData(4 , 3 , None)

G
Ganlin Zhao 已提交
385 386
        # # used for stable table

W
wenzhouwww@live.cn 已提交
387
        tdSql.query("select log(c1, 2) from stb1")
W
wenzhouwww@live.cn 已提交
388
        tdSql.checkRows(25)
G
Ganlin Zhao 已提交
389

W
wenzhouwww@live.cn 已提交
390 391

        # used for not exists table
W
wenzhouwww@live.cn 已提交
392 393 394
        tdSql.error("select log(c1, 2) from stbbb1")
        tdSql.error("select log(c1, 2) from tbname")
        tdSql.error("select log(c1, 2) from ct5")
W
wenzhouwww@live.cn 已提交
395

G
Ganlin Zhao 已提交
396
        # mix with common col
W
wenzhouwww@live.cn 已提交
397
        tdSql.query("select c1, log(c1 ,2) from ct1")
W
wenzhouwww@live.cn 已提交
398
        tdSql.checkData(0 , 0 ,8)
W
wenzhouwww@live.cn 已提交
399
        tdSql.checkData(0 , 1 ,3.000000000)
W
wenzhouwww@live.cn 已提交
400
        tdSql.checkData(4 , 0 ,0)
W
wenzhouwww@live.cn 已提交
401 402
        tdSql.checkData(4 , 1 ,None)
        tdSql.query("select c1, log(c1,2) from ct4")
W
wenzhouwww@live.cn 已提交
403 404 405
        tdSql.checkData(0 , 0 , None)
        tdSql.checkData(0 , 1 ,None)
        tdSql.checkData(4 , 0 ,5)
W
wenzhouwww@live.cn 已提交
406
        tdSql.checkData(4 , 1 ,2.321928095)
W
wenzhouwww@live.cn 已提交
407 408
        tdSql.checkData(5 , 0 ,None)
        tdSql.checkData(5 , 1 ,None)
W
wenzhouwww@live.cn 已提交
409
        tdSql.query("select c1, log(c1 ,2 ) from ct4 ")
W
wenzhouwww@live.cn 已提交
410 411 412
        tdSql.checkData(0 , 0 ,None)
        tdSql.checkData(0 , 1 ,None)
        tdSql.checkData(4 , 0 ,5)
W
wenzhouwww@live.cn 已提交
413
        tdSql.checkData(4 , 1 ,2.321928095)
W
wenzhouwww@live.cn 已提交
414 415

        # mix with common functions
W
wenzhouwww@live.cn 已提交
416
        tdSql.query("select c1, log(c1 ,2),c5, log(c5 ,2) from ct4 ")
W
wenzhouwww@live.cn 已提交
417 418 419 420
        tdSql.checkData(0 , 0 ,None)
        tdSql.checkData(0 , 1 ,None)
        tdSql.checkData(0 , 2 ,None)
        tdSql.checkData(0 , 3 ,None)
G
Ganlin Zhao 已提交
421

W
wenzhouwww@live.cn 已提交
422
        tdSql.checkData(3 , 0 , 6)
W
wenzhouwww@live.cn 已提交
423
        tdSql.checkData(3 , 1 , 2.584962501)
W
wenzhouwww@live.cn 已提交
424
        tdSql.checkData(3 , 2 ,6.66000)
W
wenzhouwww@live.cn 已提交
425
        tdSql.checkData(3 , 3 ,2.735522144)
W
wenzhouwww@live.cn 已提交
426

W
wenzhouwww@live.cn 已提交
427
        tdSql.query("select c1, log(c1,1),c5, floor(c5 ) from stb1 ")
W
wenzhouwww@live.cn 已提交
428

W
wenzhouwww@live.cn 已提交
429 430 431 432 433
        # # mix with agg functions , not support
        tdSql.error("select c1, log(c1 ,2),c5, count(c5) from stb1 ")
        tdSql.error("select c1, log(c1 ,2),c5, count(c5) from ct1 ")
        tdSql.error("select log(c1 ,2), count(c5) from stb1 ")
        tdSql.error("select log(c1 ,2), count(c5) from ct1 ")
W
wenzhouwww@live.cn 已提交
434 435 436 437 438 439 440 441
        tdSql.error("select c1, count(c5) from ct1 ")
        tdSql.error("select c1, count(c5) from stb1 ")

        # agg functions mix with agg functions

        tdSql.query("select max(c5), count(c5) from stb1")
        tdSql.query("select max(c5), count(c5) from ct1")

G
Ganlin Zhao 已提交
442

W
wenzhouwww@live.cn 已提交
443 444 445 446 447 448 449 450 451 452
        # bug fix for count
        tdSql.query("select count(c1) from ct4 ")
        tdSql.checkData(0,0,9)
        tdSql.query("select count(*) from ct4 ")
        tdSql.checkData(0,0,12)
        tdSql.query("select count(c1) from stb1 ")
        tdSql.checkData(0,0,22)
        tdSql.query("select count(*) from stb1 ")
        tdSql.checkData(0,0,25)

G
Ganlin Zhao 已提交
453
        # # bug fix for compute
W
wenzhouwww@live.cn 已提交
454
        tdSql.query("select c1, log(c1 ,2) -0 ,log(c1-4 ,2)-0 from ct4 ")
W
wenzhouwww@live.cn 已提交
455 456 457 458
        tdSql.checkData(0, 0, None)
        tdSql.checkData(0, 1, None)
        tdSql.checkData(0, 2, None)
        tdSql.checkData(1, 0, 8)
W
wenzhouwww@live.cn 已提交
459 460
        tdSql.checkData(1, 1, 3.000000000)
        tdSql.checkData(1, 2, 2.000000000)
W
wenzhouwww@live.cn 已提交
461

W
wenzhouwww@live.cn 已提交
462
        tdSql.query(" select c1, log(c1 ,2) -0 ,log(c1-0.1 ,2)-0.1 from ct4")
W
wenzhouwww@live.cn 已提交
463 464 465 466
        tdSql.checkData(0, 0, None)
        tdSql.checkData(0, 1, None)
        tdSql.checkData(0, 2, None)
        tdSql.checkData(1, 0, 8)
W
wenzhouwww@live.cn 已提交
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
        tdSql.checkData(1, 1, 3.000000000)
        tdSql.checkData(1, 2, 2.881852653)

        tdSql.query("select c1, log(c1, -10), c2, log(c2, -10), c3, log(c3, -10) from ct1")

    def test_big_number(self):

        tdSql.query("select c1, log(c1, 100000000) from ct1")  # bigint to double data overflow
        tdSql.checkData(0, 1, 0.112886248)
        tdSql.checkData(1, 1, 0.105637255)
        tdSql.checkData(4, 1, None)


        tdSql.query("select c1, log(c1, 10000000000000) from ct1")  # bigint to double data overflow
        tdSql.checkData(0, 1, 0.069468461)
        tdSql.checkData(1, 1, 0.065007542)
        tdSql.checkData(4, 1, None)

        tdSql.query("select c1, log(c1, 10000000000000000000000000) from ct1")  # bigint to double data overflow
        tdSql.query("select c1, log(c1, 10000000000000000000000000.0) from ct1") # 10000000000000000000000000.0 is a double value
        tdSql.checkData(0, 1, 0.036123599)
        tdSql.checkData(1, 1, 0.033803922)
        tdSql.checkData(4, 1, None)

        tdSql.query("select c1, log(c1, 10000000000000000000000000000000000) from ct1")  # bigint to double data overflow
        tdSql.query("select c1, log(c1, 10000000000000000000000000000000000.0) from ct1") # 10000000000000000000000000.0 is a double value
        tdSql.checkData(0, 1, 0.026561470)
        tdSql.checkData(1, 1, 0.024855825)
        tdSql.checkData(4, 1, None)
W
wenzhouwww@live.cn 已提交
496

W
wenzhouwww@live.cn 已提交
497 498 499 500 501 502 503 504 505 506 507 508 509
        tdSql.query("select c1, log(c1, 10000000000000000000000000000000000000000) from ct1")  # bigint to double data overflow
        tdSql.query("select c1, log(c1, 10000000000000000000000000000000000000000.0) from ct1") # 10000000000000000000000000.0 is a double value
        tdSql.checkData(0, 1, 0.022577250)
        tdSql.checkData(1, 1, 0.021127451)
        tdSql.checkData(4, 1, None)

        tdSql.query("select c1, log(c1, 10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) from ct1")  # bigint to double data overflow

    def log_base_test(self):

        # base is an regular number ,int or double
        tdSql.query("select c1, log(c1, 2) from ct1")
        tdSql.checkData(0, 1,3.000000000)
G
Ganlin Zhao 已提交
510
        tdSql.query("select c1, log(c1, 2.0) from ct1")
W
wenzhouwww@live.cn 已提交
511 512
        tdSql.checkData(0, 1, 3.000000000)

G
Ganlin Zhao 已提交
513
        tdSql.query("select c1, log(1, 2.0) from ct1")
W
wenzhouwww@live.cn 已提交
514 515 516 517 518
        tdSql.checkData(0, 1, 0.000000000)
        tdSql.checkRows(13)


        # # bug for compute in functions
G
Ganlin Zhao 已提交
519
        # tdSql.query("select c1, abs(1/0) from ct1")
W
wenzhouwww@live.cn 已提交
520 521 522
        # tdSql.checkData(0, 0, 8)
        # tdSql.checkData(0, 1, 1)

G
Ganlin Zhao 已提交
523
        tdSql.query("select c1, log(1, 2.0) from ct1")
W
wenzhouwww@live.cn 已提交
524 525 526 527
        tdSql.checkData(0, 1, 0.000000000)
        tdSql.checkRows(13)

        # two cols start log(x,y)
G
Ganlin Zhao 已提交
528
        tdSql.query("select c1,c2, log(c1,c2) from ct1")
W
wenzhouwww@live.cn 已提交
529 530 531 532
        tdSql.checkData(0, 2, 0.182485070)
        tdSql.checkData(1, 2, 0.172791608)
        tdSql.checkData(4, 2, None)

G
Ganlin Zhao 已提交
533
        tdSql.query("select c1,c2, log(c2,c1) from ct1")
W
wenzhouwww@live.cn 已提交
534 535 536 537
        tdSql.checkData(0, 2, 5.479900349)
        tdSql.checkData(1, 2, 5.787318105)
        tdSql.checkData(4, 2, None)

G
Ganlin Zhao 已提交
538
        tdSql.query("select c1, log(2.0 , c1) from ct1")
W
wenzhouwww@live.cn 已提交
539 540 541 542
        tdSql.checkData(0, 1, 0.333333333)
        tdSql.checkData(1, 1, 0.356207187)
        tdSql.checkData(4, 1, None)

G
Ganlin Zhao 已提交
543
        tdSql.query("select c1, log(2.0 , ceil(abs(c1))) from ct1")
W
wenzhouwww@live.cn 已提交
544 545 546
        tdSql.checkData(0, 1, 0.333333333)
        tdSql.checkData(1, 1, 0.356207187)
        tdSql.checkData(4, 1, None)
W
wenzhouwww@live.cn 已提交
547 548


W
wenzhouwww@live.cn 已提交
549
    def abs_func_filter(self):
W
wenzhouwww@live.cn 已提交
550
        tdSql.execute("use db")
W
wenzhouwww@live.cn 已提交
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
        tdSql.query("select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1>5 ")
        tdSql.checkRows(3)
        tdSql.checkData(0,0,8)
        tdSql.checkData(0,1,8.000000000)
        tdSql.checkData(0,2,8.000000000)
        tdSql.checkData(0,3,7.900000000)
        tdSql.checkData(0,4,3.000000000)

        tdSql.query("select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 ")
        tdSql.checkRows(1)
        tdSql.checkData(0,0,5)
        tdSql.checkData(0,1,5.000000000)
        tdSql.checkData(0,2,5.000000000)
        tdSql.checkData(0,3,4.900000000)
        tdSql.checkData(0,4,2.000000000)

        tdSql.query("select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 ")
        tdSql.checkRows(1)
        tdSql.checkData(0,0,5)
        tdSql.checkData(0,1,5.000000000)
        tdSql.checkData(0,2,5.000000000)
        tdSql.checkData(0,3,4.900000000)
        tdSql.checkData(0,4,2.000000000)

        tdSql.query("select c1,c2 , abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1>log(c1,2) limit 1 ")
        tdSql.checkRows(1)
        tdSql.checkData(0,0,8)
        tdSql.checkData(0,1,88888)
        tdSql.checkData(0,2,8.000000000)
        tdSql.checkData(0,3,8.000000000)
        tdSql.checkData(0,4,7.900000000)
        tdSql.checkData(0,5,3.000000000)
G
Ganlin Zhao 已提交
583

W
wenzhouwww@live.cn 已提交
584 585
    def log_Arithmetic(self):
        pass
G
Ganlin Zhao 已提交
586

W
wenzhouwww@live.cn 已提交
587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
    def check_boundary_values(self):

        tdSql.execute("drop database if exists bound_test")
        tdSql.execute("create database if not exists bound_test")
        time.sleep(3)
        tdSql.execute("use bound_test")
        tdSql.execute(
            "create table stb_bound (ts timestamp, c1 int, c2 bigint, c3 smallint, c4 tinyint, c5 float, c6 double, c7 bool, c8 binary(32),c9 nchar(32), c10 timestamp) tags (t1 int);"
        )
        tdSql.execute(f'create table sub1_bound using stb_bound tags ( 1 )')
        tdSql.execute(
                f"insert into sub1_bound values ( now()-1s, 2147483647, 9223372036854775807, 32767, 127, 3.40E+38, 1.7e+308, True, 'binary_tb1', 'nchar_tb1', now() )"
            )
        tdSql.execute(
                f"insert into sub1_bound values ( now()-1s, -2147483647, -9223372036854775807, -32767, -127, -3.40E+38, -1.7e+308, True, 'binary_tb1', 'nchar_tb1', now() )"
            )
        tdSql.execute(
                f"insert into sub1_bound values ( now(), 2147483646, 9223372036854775806, 32766, 126, 3.40E+38, 1.7e+308, True, 'binary_tb1', 'nchar_tb1', now() )"
            )
        tdSql.execute(
                f"insert into sub1_bound values ( now(), -2147483646, -9223372036854775806, -32766, -126, -3.40E+38, -1.7e+308, True, 'binary_tb1', 'nchar_tb1', now() )"
            )
        tdSql.error(
                f"insert into sub1_bound values ( now()+1s, 2147483648, 9223372036854775808, 32768, 128, 3.40E+38, 1.7e+308, True, 'binary_tb1', 'nchar_tb1', now() )"
            )
612
        self.check_result_auto_log( "select c1, c2, c3 , c4, c5 ,c6 from sub1_bound ", "select log(c1), log(c2) ,log(c3), log(c4), log(c5) ,log(c6) from sub1_bound")
W
wenzhouwww@live.cn 已提交
613 614
        self.check_result_auto_log2( "select c1, c2, c3 , c4, c5 ,c6 from sub1_bound ", "select log(c1,2), log(c2,2) ,log(c3,2), log(c4,2), log(c5,2) ,log(c6,2) from sub1_bound")
        self.check_result_auto_log__10( "select c1, c2, c3 , c4, c5 ,c6 from sub1_bound ", "select log(c1,-10), log(c2,-10) ,log(c3,-10), log(c4,-10), log(c5,-10) ,log(c6,-10) from sub1_bound")
G
Ganlin Zhao 已提交
615

W
wenzhouwww@live.cn 已提交
616
        self.check_result_auto_log2( "select c1, c2, c3 , c3, c2 ,c1 from sub1_bound ", "select log(c1,2), log(c2,2) ,log(c3,2), log(c3,2), log(c2,2) ,log(c1,2) from sub1_bound")
617
        self.check_result_auto_log( "select c1, c2, c3 , c3, c2 ,c1 from sub1_bound ", "select log(c1), log(c2) ,log(c3), log(c3), log(c2) ,log(c1) from sub1_bound")
W
wenzhouwww@live.cn 已提交
618 619


W
wenzhouwww@live.cn 已提交
620
        self.check_result_auto_log2("select abs(abs(abs(abs(abs(abs(abs(abs(abs(c1)))))))))  nest_col_func from sub1_bound" , "select log(abs(c1) ,2) from sub1_bound" )
G
Ganlin Zhao 已提交
621

W
wenzhouwww@live.cn 已提交
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
        # check basic elem for table per row
        tdSql.query("select log(abs(c1),2) ,log(abs(c2),2) , log(abs(c3),2) , log(abs(c4),2), log(abs(c5),2), log(abs(c6),2) from sub1_bound ")
        tdSql.checkData(0,0,math.log(2147483647,2))
        tdSql.checkData(0,1,math.log(9223372036854775807 ,2))
        tdSql.checkData(0,2,math.log(32767,2))
        tdSql.checkData(0,3,math.log(127 ,2))
        tdSql.checkData(0,4,math.log(339999995214436424907732413799364296704.00000,2))
        tdSql.checkData(0,5,math.log(169999999999999993883079578865998174333346074304075874502773119193537729178160565864330091787584707988572262467983188919169916105593357174268369962062473635296474636515660464935663040684957844303524367815028553272712298986386310828644513212353921123253311675499856875650512437415429217994623324794855339589632.000000000 ,2))
        tdSql.checkData(1,0,math.log(2147483647 ,2))
        tdSql.checkData(1,1,math.log(9223372036854775807 ,2))
        tdSql.checkData(1,2,math.log(32767 ,2))
        tdSql.checkData(1,3,math.log(127,2))
        tdSql.checkData(1,4,math.log(339999995214436424907732413799364296704.00000 ,2))
        tdSql.checkData(1,5,math.log(169999999999999993883079578865998174333346074304075874502773119193537729178160565864330091787584707988572262467983188919169916105593357174268369962062473635296474636515660464935663040684957844303524367815028553272712298986386310828644513212353921123253311675499856875650512437415429217994623324794855339589632.000000000 ,2))
        tdSql.checkData(3,0,math.log(2147483646,2))
        tdSql.checkData(3,1,math.log(9223372036854775806,2))
        tdSql.checkData(3,2,math.log(32766,2))
        tdSql.checkData(3,3,math.log(126 ,2))
        tdSql.checkData(3,4,math.log(339999995214436424907732413799364296704.00000,2))
        tdSql.checkData(3,5,math.log(169999999999999993883079578865998174333346074304075874502773119193537729178160565864330091787584707988572262467983188919169916105593357174268369962062473635296474636515660464935663040684957844303524367815028553272712298986386310828644513212353921123253311675499856875650512437415429217994623324794855339589632.000000000,2))
W
wenzhouwww@live.cn 已提交
642

643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665
        # check basic elem for table per row
        tdSql.query("select log(abs(c1)) ,log(abs(c2)) , log(abs(c3)) , log(abs(c4)), log(abs(c5)), log(abs(c6)) from sub1_bound ")
        tdSql.checkData(0,0,math.log(2147483647))
        tdSql.checkData(0,1,math.log(9223372036854775807))
        tdSql.checkData(0,2,math.log(32767))
        tdSql.checkData(0,3,math.log(127))
        tdSql.checkData(0,4,math.log(339999995214436424907732413799364296704.00000))
        tdSql.checkData(0,5,math.log(169999999999999993883079578865998174333346074304075874502773119193537729178160565864330091787584707988572262467983188919169916105593357174268369962062473635296474636515660464935663040684957844303524367815028553272712298986386310828644513212353921123253311675499856875650512437415429217994623324794855339589632.000000000 ))
        tdSql.checkData(1,0,math.log(2147483647))
        tdSql.checkData(1,1,math.log(9223372036854775807))
        tdSql.checkData(1,2,math.log(32767))
        tdSql.checkData(1,3,math.log(127))
        tdSql.checkData(1,4,math.log(339999995214436424907732413799364296704.00000 ))
        tdSql.checkData(1,5,math.log(169999999999999993883079578865998174333346074304075874502773119193537729178160565864330091787584707988572262467983188919169916105593357174268369962062473635296474636515660464935663040684957844303524367815028553272712298986386310828644513212353921123253311675499856875650512437415429217994623324794855339589632.000000000))
        tdSql.checkData(3,0,math.log(2147483646))
        tdSql.checkData(3,1,math.log(9223372036854775806))
        tdSql.checkData(3,2,math.log(32766))
        tdSql.checkData(3,3,math.log(126))
        tdSql.checkData(3,4,math.log(339999995214436424907732413799364296704.00000))
        tdSql.checkData(3,5,math.log(169999999999999993883079578865998174333346074304075874502773119193537729178160565864330091787584707988572262467983188919169916105593357174268369962062473635296474636515660464935663040684957844303524367815028553272712298986386310828644513212353921123253311675499856875650512437415429217994623324794855339589632.000000000))



W
wenzhouwww@live.cn 已提交
666 667 668 669 670 671 672
        # check  + - * / in functions
        tdSql.query("select log(abs(c1+1) ,2) ,log(abs(c2),2) , log(abs(c3*1),2) , log(abs(c4/2),2), log(abs(c5) ,2)/2, log(abs(c6) ,2) from sub1_bound ")
        tdSql.checkData(0,0,math.log(2147483648.000000000,2))
        tdSql.checkData(0,1,math.log(9223372036854775807,2))
        tdSql.checkData(0,2,math.log(32767.000000000,2))
        tdSql.checkData(0,3,math.log(63.500000000,2))
        tdSql.checkData(0,4,63.999401166)
673 674 675 676 677 678 679 680 681 682 683 684 685

    def support_super_table_test(self):
        tdSql.execute(" use db ")
        self.check_result_auto_log2( " select c5 from stb1 order by ts " , "select log(c5,2) from stb1 order by ts" )
        self.check_result_auto_log2( " select c5 from stb1 order by tbname " , "select log(c5,2) from stb1 order by tbname" )
        self.check_result_auto_log2( " select c5 from stb1 where c1 > 0 order by tbname  " , "select log(c5,2) from stb1 where c1 > 0 order by tbname" )
        self.check_result_auto_log2( " select c5 from stb1 where c1 > 0 order by tbname  " , "select log(c5,2) from stb1 where c1 > 0 order by tbname" )

        self.check_result_auto_log2( " select t1,c5 from stb1 order by ts " , "select log(t1,2), log(c5,2) from stb1 order by ts" )
        self.check_result_auto_log2( " select t1,c5 from stb1 order by tbname " , "select log(t1,2) ,log(c5,2) from stb1 order by tbname" )
        self.check_result_auto_log2( " select t1,c5 from stb1 where c1 > 0 order by tbname  " , "select log(t1,2) ,log(c5,2) from stb1 where c1 > 0 order by tbname" )
        self.check_result_auto_log2( " select t1,c5 from stb1 where c1 > 0 order by tbname  " , "select log(t1,2) , log(c5,2) from stb1 where c1 > 0 order by tbname" )
        pass
G
Ganlin Zhao 已提交
686

W
wenzhouwww@live.cn 已提交
687 688 689 690
    def run(self):  # sourcery skip: extract-duplicate-method, remove-redundant-fstring
        tdSql.prepare()

        tdLog.printNoPrefix("==========step1:create table ==============")
G
Ganlin Zhao 已提交
691

W
wenzhouwww@live.cn 已提交
692 693
        self.prepare_datas()

G
Ganlin Zhao 已提交
694
        tdLog.printNoPrefix("==========step2:test errors ==============")
W
wenzhouwww@live.cn 已提交
695 696

        self.test_errors()
G
Ganlin Zhao 已提交
697 698

        tdLog.printNoPrefix("==========step3:support types ============")
W
wenzhouwww@live.cn 已提交
699 700 701

        self.support_types()

G
Ganlin Zhao 已提交
702
        tdLog.printNoPrefix("==========step4: log basic query ============")
W
wenzhouwww@live.cn 已提交
703 704 705

        self.basic_log_function()

G
Ganlin Zhao 已提交
706
        tdLog.printNoPrefix("==========step5: big number log query ============")
W
wenzhouwww@live.cn 已提交
707 708 709

        self.test_big_number()

G
Ganlin Zhao 已提交
710
        tdLog.printNoPrefix("==========step6: base  number for log query ============")
W
wenzhouwww@live.cn 已提交
711 712 713

        self.log_base_test()

G
Ganlin Zhao 已提交
714
        tdLog.printNoPrefix("==========step7: log boundary query ============")
W
wenzhouwww@live.cn 已提交
715 716 717

        self.check_boundary_values()

G
Ganlin Zhao 已提交
718
        tdLog.printNoPrefix("==========step8: log filter query ============")
W
wenzhouwww@live.cn 已提交
719 720 721

        self.abs_func_filter()

722 723
        tdLog.printNoPrefix("==========step9: check log result of  stable query ============")

G
Ganlin Zhao 已提交
724
        self.support_super_table_test()
W
wenzhouwww@live.cn 已提交
725

W
wenzhouwww@live.cn 已提交
726 727 728 729 730 731
    def stop(self):
        tdSql.close()
        tdLog.success(f"{__file__} successfully executed")

tdCases.addLinux(__file__, TDTestCase())
tdCases.addWindows(__file__, TDTestCase())