union.py 16.1 KB
Newer Older
C
cpwu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
import datetime

from util.log import *
from util.sql import *
from util.cases import *
from util.dnodes import *

PRIMARY_COL = "ts"

INT_COL     = "c1"
BINT_COL    = "c2"
SINT_COL    = "c3"
TINT_COL    = "c4"
FLOAT_COL   = "c5"
DOUBLE_COL  = "c6"
BOOL_COL    = "c7"

BINARY_COL  = "c8"
NCHAR_COL   = "c9"
TS_COL      = "c10"

NUM_COL     = [ INT_COL, BINT_COL, SINT_COL, TINT_COL, FLOAT_COL, DOUBLE_COL, ]
CHAR_COL    = [ BINARY_COL, NCHAR_COL, ]
BOOLEAN_COL = [ BOOL_COL, ]
TS_TYPE_COL = [ TS_COL, ]

class TDTestCase:

    def init(self, conn, logSql):
        tdLog.debug(f"start to excute {__file__}")
        tdSql.init(conn.cursor())

    def __query_condition(self,tbname):
        query_condition = []
        for char_col in CHAR_COL:
            query_condition.extend(
                (
C
cpwu 已提交
38 39 40
                    f"rtrim( {tbname}.{char_col} )",
                    f"substr( {tbname}.{char_col}, 1 )",
                    f"count( {tbname}.{char_col} )",
C
cpwu 已提交
41
                    f"cast( {tbname}.{char_col} as nchar(3) )",
C
cpwu 已提交
42 43 44 45 46 47 48
                )
            )

        for num_col in NUM_COL:
            query_condition.extend(
                (
                    f"{tbname}.{num_col}",
C
cpwu 已提交
49 50 51 52
                    f"floor( {tbname}.{num_col} )",
                    f"log( {tbname}.{num_col},  {tbname}.{num_col})",
                    f"sin( {tbname}.{num_col} )",
                    f"sqrt( {tbname}.{num_col} )",
C
cpwu 已提交
53 54 55
                )
            )

C
cpwu 已提交
56 57 58
        query_condition.extend(
            (
                ''' "test12" ''',
C
cpwu 已提交
59
                # 1010,
C
cpwu 已提交
60 61
            )
        )
C
cpwu 已提交
62 63 64 65 66 67 68 69

        return query_condition

    def __join_condition(self, tb_list, filter=PRIMARY_COL, INNER=False):
        table_reference = tb_list[0]
        join_condition = table_reference
        join = "inner join" if INNER else "join"
        for i in range(len(tb_list[1:])):
C
cpwu 已提交
70
            join_condition += f" {join} {tb_list[i+1]} on {table_reference}.{filter}={tb_list[i+1]}.{filter}"
C
cpwu 已提交
71 72 73 74

        return join_condition

    def __where_condition(self, col=None, tbname=None, query_conditon=None):
C
cpwu 已提交
75
        if query_conditon and isinstance(query_conditon, str):
C
cpwu 已提交
76 77 78 79 80 81 82 83 84
            if query_conditon.startswith("count"):
                query_conditon = query_conditon[6:-1]
            elif query_conditon.startswith("max"):
                query_conditon = query_conditon[4:-1]
            elif query_conditon.startswith("sum"):
                query_conditon = query_conditon[4:-1]
            elif query_conditon.startswith("min"):
                query_conditon = query_conditon[4:-1]

C
cpwu 已提交
85

C
cpwu 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99
        if query_conditon:
            return f" where {query_conditon} is not null"
        if col in NUM_COL:
            return f" where abs( {tbname}.{col} ) >= 0"
        if col in CHAR_COL:
            return f" where lower( {tbname}.{col} ) like 'bina%' or lower( {tbname}.{col} ) like '_cha%' "
        if col in BOOLEAN_COL:
            return f" where {tbname}.{col} in (false, true)  "
        if col in TS_TYPE_COL or col in PRIMARY_COL:
            return f" where cast( {tbname}.{col} as binary(16) ) is not null "

        return ""


C
cpwu 已提交
100
    def __group_condition(self, col, having = None):
C
cpwu 已提交
101 102 103 104 105 106 107 108 109
        if isinstance(col, str):
            if col.startswith("count"):
                col = col[6:-1]
            elif col.startswith("max"):
                col = col[4:-1]
            elif col.startswith("sum"):
                col = col[4:-1]
            elif col.startswith("min"):
                col = col[4:-1]
C
cpwu 已提交
110
        return f" group by {col} having {having}" if having else f" group by {col} "
C
cpwu 已提交
111

C
cpwu 已提交
112
    def __single_sql(self, select_clause, from_clause, where_condition="", group_condition=""):
C
cpwu 已提交
113
        if isinstance(select_clause, str) and "on" not in from_clause and select_clause.split(".")[0] != from_clause.split(".")[0]:
C
cpwu 已提交
114
            return
C
cpwu 已提交
115 116 117 118 119 120 121 122 123 124 125 126
        return f"select {select_clause} from {from_clause} {where_condition} {group_condition}"


    @property
    def __join_tblist(self):
        return [
            ["ct1", "ct2"],
            ["ct1", "ct4"],
            ["ct1", "t1"],
            ["ct2", "ct4"],
            ["ct2", "t1"],
            ["ct4", "t1"],
C
cpwu 已提交
127 128 129 130 131
            # ["ct1", "ct2", "ct4"],
            # ["ct1", "ct2", "t1"],
            # ["ct1", "ct4", "t1"],
            # ["ct2", "ct4", "t1"],
            # ["ct1", "ct2", "ct4", "t1"],
C
cpwu 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
        ]

    @property
    def __tb_liast(self):
        return [
            "ct1",
            "ct2",
            "ct4",
            "t1",
        ]

    def sql_list(self):
        sqls = []
        __join_tblist = self.__join_tblist
        for join_tblist in __join_tblist:
            for join_tb in join_tblist:
C
cpwu 已提交
148 149
                select_claus_list = self.__query_condition(join_tb)
                for select_claus in select_claus_list:
C
cpwu 已提交
150
                    group_claus = self.__group_condition( col=select_claus)
C
cpwu 已提交
151
                    where_claus = self.__where_condition(query_conditon=select_claus)
C
cpwu 已提交
152
                    having_claus = self.__group_condition( col=select_claus, having=f"{select_claus} is not null")
C
cpwu 已提交
153 154 155 156 157 158
                    sqls.extend(
                        (
                            self.__single_sql(select_claus, join_tb, where_claus, group_claus),
                            self.__single_sql(select_claus, join_tb, where_claus, having_claus),
                            self.__single_sql(select_claus, self.__join_condition(join_tblist), where_claus, having_claus),
                            self.__single_sql(select_claus, self.__join_condition(join_tblist, INNER=True), where_claus, having_claus),
C
cpwu 已提交
159 160 161 162 163
                            self.__single_sql(select_claus, join_tb, where_claus),
                            self.__single_sql(select_claus, join_tb, having_claus),
                            self.__single_sql(select_claus, join_tb, group_claus),
                            self.__single_sql(select_claus, join_tb),

C
cpwu 已提交
164
                        )
C
cpwu 已提交
165 166 167
                    )
        __no_join_tblist = self.__tb_liast
        for tb in __no_join_tblist:
C
cpwu 已提交
168 169
                select_claus_list = self.__query_condition(tb)
                for select_claus in select_claus_list:
C
cpwu 已提交
170
                    group_claus = self.__group_condition(col=select_claus)
C
cpwu 已提交
171
                    where_claus = self.__where_condition(query_conditon=select_claus)
C
cpwu 已提交
172
                    having_claus = self.__group_condition(col=select_claus, having=f"{select_claus} is not null")
C
cpwu 已提交
173 174 175 176
                    sqls.extend(
                        (
                            self.__single_sql(select_claus, join_tb, where_claus, group_claus),
                            self.__single_sql(select_claus, join_tb, where_claus, having_claus),
C
cpwu 已提交
177 178 179 180
                            self.__single_sql(select_claus, join_tb, where_claus),
                            self.__single_sql(select_claus, join_tb, group_claus),
                            self.__single_sql(select_claus, join_tb, having_claus),
                            self.__single_sql(select_claus, join_tb),
C
cpwu 已提交
181
                        )
C
cpwu 已提交
182 183
                    )

C
cpwu 已提交
184 185
        # return filter(None, sqls)
        return list(filter(None, sqls))
C
cpwu 已提交
186

C
cpwu 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
    def __get_type(self, col):
        if tdSql.cursor.istype(col, "BOOL"):
            return "BOOL"
        if tdSql.cursor.istype(col, "INT"):
            return "INT"
        if tdSql.cursor.istype(col, "BIGINT"):
            return "BIGINT"
        if tdSql.cursor.istype(col, "TINYINT"):
            return "TINYINT"
        if tdSql.cursor.istype(col, "SMALLINT"):
            return "SMALLINT"
        if tdSql.cursor.istype(col, "FLOAT"):
            return "FLOAT"
        if tdSql.cursor.istype(col, "DOUBLE"):
            return "DOUBLE"
        if tdSql.cursor.istype(col, "BINARY"):
            return "BINARY"
        if tdSql.cursor.istype(col, "NCHAR"):
            return "NCHAR"
        if tdSql.cursor.istype(col, "TIMESTAMP"):
            return "TIMESTAMP"
        if tdSql.cursor.istype(col, "JSON"):
            return "JSON"
        if tdSql.cursor.istype(col, "TINYINT UNSIGNED"):
            return "TINYINT UNSIGNED"
        if tdSql.cursor.istype(col, "SMALLINT UNSIGNED"):
            return "SMALLINT UNSIGNED"
        if tdSql.cursor.istype(col, "INT UNSIGNED"):
            return "INT UNSIGNED"
        if tdSql.cursor.istype(col, "BIGINT UNSIGNED"):
            return "BIGINT UNSIGNED"
C
cpwu 已提交
218 219 220

    def union_check(self):
        sqls = self.sql_list()
C
cpwu 已提交
221 222
        for i in range(len(sqls)):
            tdSql.query(sqls[i])
C
cpwu 已提交
223
            res1_type = self.__get_type(0)
C
cpwu 已提交
224 225
            for j in range(sqls[i:]):
                tdSql.query(sqls[j])
C
cpwu 已提交
226 227 228 229 230 231 232 233 234 235 236 237 238
                union_type = False
                res2_type =  self.__get_type(0)

                if res1_type in  ( "BIGINT" , "NCHAR" ):
                    union_type = True
                elif res2_type == res1_type:
                    union_type = True
                elif res1_type == "TIMESAMP" and res2_type not in ("BINARY", "NCHAR"):
                    union_type = True
                elif res1_type == "BINARY" and res2_type != "NCHAR":
                    union_type = True

                if union_type:
C
cpwu 已提交
239 240
                    tdSql.query(f"{sqls[i]} union {sqls[j]}")
                    tdSql.query(f"{sqls[j]} union {sqls[i]}")
C
cpwu 已提交
241
                    tdSql.checkCols(1)
C
cpwu 已提交
242 243
                    tdSql.query(f"{sqls[i]} union all {sqls[j]}")
                    tdSql.query(f"{sqls[j]} union all {sqls[i]}")
C
cpwu 已提交
244
                    tdSql.checkCols(1)
C
cpwu 已提交
245
                else:
C
cpwu 已提交
246
                    tdSql.error(f"{sqls[i]} union {sqls[j]}")
C
cpwu 已提交
247 248

    def __test_error(self):
C
cpwu 已提交
249 250 251 252 253


        tdSql.error( "show tables union show tables" )
        tdSql.error( "create table errtb1 union all create table errtb2" )
        tdSql.error( "drop table ct1 union all drop table ct3" )
C
cpwu 已提交
254 255 256 257
        tdSql.error( "select c1 from ct1 union all drop table ct3" )
        tdSql.error( "select c1 from ct1 union all '' " )
        tdSql.error( " '' union all select c1 from ct1 " )
        tdSql.error( "select c1 from ct1 union select c1 from ct2 union select c1 from ct4 ")
C
cpwu 已提交
258 259

    def all_test(self):
C
cpwu 已提交
260
        self.__test_error()
C
cpwu 已提交
261
        self.union_check()
C
cpwu 已提交
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387


    def __create_tb(self):

        tdLog.printNoPrefix("==========step1:create table")
        create_stb_sql  =  f'''create table stb1(
                ts timestamp, {INT_COL} int, {BINT_COL} bigint, {SINT_COL} smallint, {TINT_COL} tinyint,
                 {FLOAT_COL} float, {DOUBLE_COL} double, {BOOL_COL} bool,
                 {BINARY_COL} binary(16), {NCHAR_COL} nchar(32), {TS_COL} timestamp
            ) tags (t1 int)
            '''
        create_ntb_sql = f'''create table t1(
                ts timestamp, {INT_COL} int, {BINT_COL} bigint, {SINT_COL} smallint, {TINT_COL} tinyint,
                 {FLOAT_COL} float, {DOUBLE_COL} double, {BOOL_COL} bool,
                 {BINARY_COL} binary(16), {NCHAR_COL} nchar(32), {TS_COL} timestamp
            )
            '''
        tdSql.execute(create_stb_sql)
        tdSql.execute(create_ntb_sql)

        for i in range(4):
            tdSql.execute(f'create table ct{i+1} using stb1 tags ( {i+1} )')
            { i % 32767 }, { i % 127}, { i * 1.11111 }, { i * 1000.1111 }, { i % 2}

    def __insert_data(self, rows):
        now_time = int(datetime.datetime.timestamp(datetime.datetime.now()) * 1000)
        for i in range(rows):
            tdSql.execute(
                f"insert into ct1 values ( { now_time - i * 1000 }, {i}, {11111 * i}, {111 * i % 32767 }, {11 * i % 127}, {1.11*i}, {1100.0011*i}, {i%2}, 'binary{i}', 'nchar_测试_{i}', { now_time + 1 * i } )"
            )
            tdSql.execute(
                f"insert into ct4 values ( { now_time - i * 7776000000 }, {i}, {11111 * i}, {111 * i % 32767 }, {11 * i % 127}, {1.11*i}, {1100.0011*i}, {i%2}, 'binary{i}', 'nchar_测试_{i}', { now_time + 1 * i } )"
            )
            tdSql.execute(
                f"insert into ct2 values ( { now_time - i * 7776000000 }, {-i},  {-11111 * i}, {-111 * i % 32767 }, {-11 * i % 127}, {-1.11*i}, {-1100.0011*i}, {i%2}, 'binary{i}', 'nchar_测试_{i}', { now_time + 1 * i } )"
            )
        tdSql.execute(
            f'''insert into ct1 values
            ( { now_time - rows * 5 }, 0, 0, 0, 0, 0, 0, 0, 'binary0', 'nchar_测试_0', { now_time + 8 } )
            ( { now_time + 10000 }, { rows }, -99999, -999, -99, -9.99, -99.99, 1, 'binary9', 'nchar_测试_9', { now_time + 9 } )
            '''
        )

        tdSql.execute(
            f'''insert into ct4 values
            ( { now_time - rows * 7776000000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time - rows * 3888000000 + 10800000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time +  7776000000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            (
                { now_time + 5184000000}, {pow(2,31)-pow(2,15)}, {pow(2,63)-pow(2,30)}, 32767, 127,
                { 3.3 * pow(10,38) }, { 1.3 * pow(10,308) }, { rows % 2 }, "binary_limit-1", "nchar_测试_limit-1", { now_time - 86400000}
                )
            (
                { now_time + 2592000000 }, {pow(2,31)-pow(2,16)}, {pow(2,63)-pow(2,31)}, 32766, 126,
                { 3.2 * pow(10,38) }, { 1.2 * pow(10,308) }, { (rows-1) % 2 }, "binary_limit-2", "nchar_测试_limit-2", { now_time - 172800000}
                )
            '''
        )

        tdSql.execute(
            f'''insert into ct2 values
            ( { now_time - rows * 7776000000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time - rows * 3888000000 + 10800000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time + 7776000000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            (
                { now_time + 5184000000 }, { -1 * pow(2,31) + pow(2,15) }, { -1 * pow(2,63) + pow(2,30) }, -32766, -126,
                { -1 * 3.2 * pow(10,38) }, { -1.2 * pow(10,308) }, { rows % 2 }, "binary_limit-1", "nchar_测试_limit-1", { now_time - 86400000 }
                )
            (
                { now_time + 2592000000 }, { -1 * pow(2,31) + pow(2,16) }, { -1 * pow(2,63) + pow(2,31) }, -32767, -127,
                { - 3.3 * pow(10,38) }, { -1.3 * pow(10,308) }, { (rows-1) % 2 }, "binary_limit-2", "nchar_测试_limit-2", { now_time - 172800000 }
                )
            '''
        )

        for i in range(rows):
            insert_data = f'''insert into t1 values
                ( { now_time - i * 3600000 }, {i}, {i * 11111}, { i % 32767 }, { i % 127}, { i * 1.11111 }, { i * 1000.1111 }, { i % 2},
                "binary_{i}", "nchar_测试_{i}", { now_time - 1000 * i } )
                '''
            tdSql.execute(insert_data)
        tdSql.execute(
            f'''insert into t1 values
            ( { now_time + 10800000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time - (( rows // 2 ) * 60 + 30) * 60000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time - rows * 3600000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time + 7200000 }, { pow(2,31) - pow(2,15) }, { pow(2,63) - pow(2,30) }, 32767, 127,
                { 3.3 * pow(10,38) }, { 1.3 * pow(10,308) }, { rows % 2 },
                "binary_limit-1", "nchar_测试_limit-1", { now_time - 86400000 }
                )
            (
                { now_time + 3600000 } , { pow(2,31) - pow(2,16) }, { pow(2,63) - pow(2,31) }, 32766, 126,
                { 3.2 * pow(10,38) }, { 1.2 * pow(10,308) }, { (rows-1) % 2 },
                "binary_limit-2", "nchar_测试_limit-2", { now_time - 172800000 }
                )
            '''
        )


    def run(self):
        tdSql.prepare()

        tdLog.printNoPrefix("==========step1:create table")
        self.__create_tb()

        tdLog.printNoPrefix("==========step2:insert data")
        self.rows = 10
        self.__insert_data(self.rows)

        tdLog.printNoPrefix("==========step3:all check")
        self.all_test()

        tdDnodes.stop(1)
        tdDnodes.start(1)

        tdSql.execute("use db")

        tdLog.printNoPrefix("==========step4:after wal, all check again ")
        self.all_test()

    def stop(self):
        tdSql.close()
        tdLog.success(f"{__file__} successfully executed")

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