TD-12229.py 25.4 KB
Newer Older
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 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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 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 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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
###################################################################
#           Copyright (c) 2020 by TAOS Technologies, Inc.
#                     All rights reserved.
#
#  This file is proprietary and confidential to TAOS Technologies.
#  No part of this file may be reproduced, stored, transmitted,
#  disclosed or used in any form or by any means other than as
#  expressly provided by the written permission from Jianhui Tao
#
###################################################################

# -*- coding: utf-8 -*-

from posixpath import split
import sys
import os 
from util.log import *
from util.cases import *
from util.sql import *
from util.dnodes import *
import subprocess

class TDTestCase:
    def init(self, conn, logSql):
        tdLog.debug("start to execute %s" % __file__)
        tdSql.init(conn.cursor(), logSql)
        
        self.ts = 1420041600000 # 2015-01-01 00:00:00  this is begin time for first record
        self.num = 10


    def caseDescription(self):

        '''
        case1 <author>:wenzhouwww [TD-12229] : 
            this test case is an test case for unexpected union all result for stable ;
            Root Cause: when one subclause of union returns empty result, continue to check next subclause
        ''' 
        return 

    def prepare_data(self):

         tdLog.info (" ====================================== prepare data ==================================================")

         tdSql.execute('drop database if exists testdb ;')
         tdSql.execute('create database testdb keep 36500;')
         tdSql.execute('use testdb;')

         tdSql.execute('create stable stable_1(ts timestamp ,tscol timestamp, q_int int , q_bigint bigint , q_smallint smallint , q_tinyint tinyint, q_float float ,\
              q_double double , bin_chars binary(20)) tags(loc nchar(20) ,ind int,tstag timestamp);')
         tdSql.execute('create stable stable_2(ts timestamp ,tscol timestamp, q_int int , q_bigint bigint , q_smallint smallint , q_tinyint tinyint, q_float float ,\
              q_double double, bin_chars binary(20) ) tags(loc nchar(20),ind int,tstag timestamp);')
         # create empty stables
         tdSql.execute('create stable stable_empty(ts timestamp ,tscol timestamp, q_int int , q_bigint bigint , q_smallint smallint , q_tinyint tinyint, q_float float ,\
              q_double double, bin_chars binary(20) ) tags(loc nchar(20),ind int,tstag timestamp);')
         tdSql.execute('create stable stable_sub_empty(ts timestamp ,tscol timestamp, q_int int , q_bigint bigint , q_smallint smallint , q_tinyint tinyint, q_float float ,\
              q_double double, bin_chars binary(20) ) tags(loc nchar(20),ind int,tstag timestamp);')

         # create empty sub_talbes and regular tables
         tdSql.execute('create table sub_empty_1 using stable_sub_empty tags("sub_empty_1",3,"2015-01-01 00:02:00")')
         tdSql.execute('create table sub_empty_2 using stable_sub_empty tags("sub_empty_2",3,"2015-01-01 00:02:00")')
         tdSql.execute('create table regular_empty (ts timestamp , tscol timestamp ,q_int int , q_bigint bigint , q_smallint smallint , q_tinyint tinyint , q_float float , q_double double , bin_chars binary(20)) ;')

         tdSql.execute('create table sub_table1_1 using stable_1 tags("sub1_1",1,"2015-01-01 00:00:00")')
         tdSql.execute('create table sub_table1_2 using stable_1 tags("sub1_2",2,"2015-01-01 00:01:00")')
         tdSql.execute('create table sub_table1_3 using stable_1 tags("sub1_3",3,"2015-01-01 00:02:00")')

         tdSql.execute('create table sub_table2_1 using stable_2 tags("sub2_1",1,"2015-01-01 00:00:00")')
         tdSql.execute('create table sub_table2_2 using stable_2 tags("sub2_2",2,"2015-01-01 00:01:00")')
         tdSql.execute('create table sub_table2_3 using stable_2 tags("sub2_3",3,"2015-01-01 00:02:00")')

         tdSql.execute('create table regular_table_1 (ts timestamp , tscol timestamp ,q_int int , q_bigint bigint , q_smallint smallint , q_tinyint tinyint , q_float float , q_double double, bin_chars binary(20)) ;')
         tdSql.execute('create table regular_table_2 (ts timestamp , tscol timestamp ,q_int int , q_bigint bigint , q_smallint smallint , q_tinyint tinyint , q_float float , q_double double , bin_chars binary(20)) ;')
         tdSql.execute('create table regular_table_3 (ts timestamp , tscol timestamp ,q_int int , q_bigint bigint , q_smallint smallint , q_tinyint tinyint , q_float float , q_double double , bin_chars binary(20)) ;')

         tablenames = ["sub_table1_1","sub_table1_2","sub_table1_3","sub_table2_1","sub_table2_2","sub_table2_3","regular_table_1","regular_table_2","regular_table_3"]

         tdLog.info("insert into records ")

         for tablename in tablenames:

             for i in range(self.num):  
                 sql= 'insert into %s values(%d, %d,%d, %d, %d, %d, %f, %f, "%s")' % (tablename,self.ts + i*10000, self.ts + i*10,2147483647-i, 9223372036854775807-i, 32767-i, 127-i, i, i,("bintest"+str(i)))
                 print(sql)
                 tdSql.execute(sql)

         tdLog.info("=============================================data prepared done!=========================")

    def basic_union(self):

        # empty table
        tdSql.query('select q_int from sub_empty_1  union all  select q_int from sub_empty_2;')
        tdSql.checkRows(0)

        tdSql.error('select q_int from sub_empty_1  union all  select q_int from stable_empty group by tbname;')

        tdSql.error('select q_intfrom group by tbname  union all  select q_int from sub_empty_1 group by tbname;')
     
        tdSql.query('select q_int from sub_empty_1  union all  select q_int from stable_empty ;')
        tdSql.checkRows(0)
        tdSql.query('select q_int from stable_empty  union all  select q_int from sub_empty_1 ;')
        tdSql.checkRows(0)

        tdSql.query('select q_int from stable_1  union all  select q_int from stable_empty ;')
        tdSql.checkRows(30)
        tdSql.query('select q_int from stable_1  union all  select q_int from sub_empty_1 ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from sub_table1_2  union all  select q_int from stable_empty ;')
        tdSql.checkRows(10)
        tdSql.query('select q_int from sub_table1_2  union all  select q_int from sub_empty_1 ;')
        tdSql.checkRows(10)

        tdSql.query('select q_int from stable_empty  union all  select q_int from sub_table1_2  ;')
        tdSql.checkRows(10)
        tdSql.query('select q_int from sub_empty_1  union all  select q_int from sub_table1_2  ;')
        tdSql.checkRows(10)

        tdSql.query('select q_int from regular_empty  union all  select q_int from stable_empty ;')
        tdSql.checkRows(0)
        tdSql.query('select q_int from regular_empty  union all  select q_int from sub_empty_1 ;')
        tdSql.checkRows(0)

        tdSql.query('select q_int from stable_empty  union all  select q_int from regular_empty  ;')
        tdSql.checkRows(0)
        tdSql.query('select q_int from sub_empty_1  union all  select q_int from regular_empty  ;')
        tdSql.checkRows(0)

        tdSql.query('select q_int from regular_empty  union all  select q_int from regular_table_2 ;')
        tdSql.checkRows(10)
        tdSql.query('select q_int from regular_empty  union all  select q_int from sub_empty_1 ;')
        tdSql.checkRows(0)

        tdSql.query('select q_int from stable_empty  union all  select q_int from regular_table_2  ;')
        tdSql.checkRows(10)
        tdSql.query('select q_int from sub_empty_1  union all  select q_int from regular_table_2  ;')
        tdSql.checkRows(10)

        # regular table

        tdSql.query('select q_int from regular_table_3  union all  select q_int from regular_table_2 ;')
        tdSql.checkRows(20)

        tdSql.query('select q_int from regular_table_2  union all  select q_int from regular_table_3 ;')
        tdSql.checkRows(20)

        tdSql.query('select q_int from regular_table_3 union all  select q_int from sub_empty_1 ;')
        tdSql.checkRows(10)

        tdSql.query('select q_int from sub_table1_1  union all  select q_int from regular_table_2  ;')
        tdSql.checkRows(20)
        tdSql.query('select q_int from regular_table_2  union all  select q_int from sub_table1_1  ;')
        tdSql.checkRows(20)

        tdSql.query('select q_int from sub_empty_1  union all  select q_int from regular_table_2 ;')
        tdSql.checkRows(10)
        tdSql.query('select q_int from regular_table_2  union all  select q_int from sub_empty_1 ;')
        tdSql.checkRows(10)

        tdSql.query('select q_int from sub_empty_1  union all  select q_int from stable_1 ;')
        tdSql.checkRows(30)
        tdSql.query('select q_int from stable_1  union all  select q_int from sub_empty_1 ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from regular_table_1  union all  select q_int from stable_1  ;')
        tdSql.checkRows(40)

        tdSql.query('select q_int from stable_1  union all  select q_int from regular_table_1  ;')
        tdSql.checkRows(40)

        tdSql.query('select q_int from sub_empty_1  union all  select q_int from regular_table_2 ;')
        tdSql.checkRows(10)

        tdSql.query('select q_int from regular_table_2  union all  select q_int from sub_empty_1 ;')
        tdSql.checkRows(10)

        tdSql.query('select q_int from regular_table_1  union all  select q_int from regular_table_2  ;')
        tdSql.checkRows(20)

        tdSql.query('select q_int from regular_table_2  union all  select q_int from regular_table_1  ;')
        tdSql.checkRows(20)


        # sub_table

        tdSql.query('select q_int from sub_empty_1  union all  select q_int from sub_table2_2  ;')
        tdSql.checkRows(10)

        tdSql.query('select q_int from sub_table2_2   union all  select q_int from sub_empty_1 ;')
        tdSql.checkRows(10)

        tdSql.query('select q_int from regular_table_1  union all  select q_int from sub_table2_2   ;')
        tdSql.checkRows(20)

        tdSql.query('select q_int from sub_table2_2   union all  select q_int from regular_table_1  ;')
        tdSql.checkRows(20)


        tdSql.query('select q_int from sub_table2_1  union all  select q_int from sub_table2_2  ;')
        tdSql.checkRows(20)

        tdSql.query('select q_int from sub_table2_2   union all  select q_int from sub_table2_1 ;')
        tdSql.checkRows(20)

        tdSql.query('select q_int from sub_table2_1  union all  select q_int from sub_table2_2   ;')
        tdSql.checkRows(20)

        tdSql.query('select q_int from sub_table2_2   union all  select q_int from sub_table2_1  ;')
        tdSql.checkRows(20)
        
        tdSql.query('select q_int from sub_table2_2   union all  select q_int from sub_table2_2  ;')
        tdSql.checkRows(20)

        # stable

        tdSql.query('select q_int from stable_1   union all  select q_int from sub_table2_2  ;')
        tdSql.checkRows(40)

        tdSql.query('select q_int from sub_table2_2   union all  select q_int from stable_1  ;')
        tdSql.checkRows(40)

        tdSql.query('select q_int from stable_2   union all  select q_int from stable_1  ;')
        tdSql.checkRows(60)

        tdSql.query('select q_int from stable_1   union all  select q_int from stable_2  ;')
        tdSql.checkRows(60)

        tdSql.query('select q_int from stable_1   union all  select q_int from stable_1  ;')
        tdSql.checkRows(60)


        tdSql.query('select q_int from stable_empty   union all  select q_int from stable_1  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from stable_1   union all  select q_int from stable_empty  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from stable_empty   union all  select q_int from stable_1  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from stable_1   union all  select q_int from stable_empty  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from regular_empty   union all  select q_int from stable_1  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from stable_1   union all  select q_int from regular_empty  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from regular_empty   union all  select q_int from stable_1  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from stable_1   union all  select q_int from regular_empty  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from stable_1   union all  select q_int from stable_empty  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from sub_empty_2  union all  select q_int from stable_1  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from stable_1   union all  select q_int from sub_empty_2  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from sub_empty_2   union all  select q_int from stable_1  ;')
        tdSql.checkRows(30)

        tdSql.query('select q_int from stable_1   union all  select q_int from sub_empty_2  ;')
        tdSql.checkRows(30)

        


    def query_with_union(self):

         tdLog.info (" ====================================== elapsed mixup with union all =================================================")

         # union all with empty 

         tdSql.query("select elapsed(ts,10s) from regular_table_1  union all  select elapsed(ts,10s) from regular_table_2;")

         tdSql.query("select elapsed(ts,10s) from regular_table_1  where ts>=\"2015-01-01 00:00:00.000\"  and ts < \"2015-01-01 00:10:00.000\" interval(1s) fill(prev)  union all \
         select elapsed(ts,10s) from regular_table_2 where ts>=\"2015-01-01 00:00:00.000\"  and ts < \"2015-01-01 00:10:00.000\" interval(1s) fill(prev);")
         tdSql.checkRows(1200)
         tdSql.checkData(0,1,0.1)
         tdSql.checkData(500,1,0)

         tdSql.query("select elapsed(ts,10s) from sub_empty_1  where ts>=\"2015-01-01 00:00:00.000\"  and ts < \"2015-01-01 00:10:00.000\" interval(1s) fill(prev)  union all \
         select elapsed(ts,10s) from regular_table_2 where ts>=\"2015-01-01 00:00:00.000\"  and ts < \"2015-01-01 00:10:00.000\" interval(1s) fill(prev);")
         tdSql.checkRows(600)
         tdSql.checkData(0,1,0.1)
         tdSql.checkData(500,0,0)

         tdSql.query('select elapsed(ts,10s) from sub_empty_1 union all select elapsed(ts,10s) from sub_empty_2;')
         tdSql.checkRows(0)

         tdSql.query('select elapsed(ts,10s) from regular_table_1 union all select elapsed(ts,10s) from sub_empty_1;')
         tdSql.checkRows(1)
         tdSql.checkData(0,0,9)

         tdSql.query('select elapsed(ts,10s) from sub_empty_1 union all select elapsed(ts,10s) from regular_table_1;')
         tdSql.checkRows(1)
         tdSql.checkData(0,0,9)

         tdSql.query('select elapsed(ts,10s) from sub_empty_1 union all select elapsed(ts,10s) from sub_table1_1;')
         tdSql.checkRows(1)
         tdSql.checkData(0,0,9)

         tdSql.query('select elapsed(ts,10s) from sub_table1_1 union all select elapsed(ts,10s) from sub_empty_1;')
         tdSql.checkRows(1)
         tdSql.checkData(0,0,9)

         tdSql.query('select elapsed(ts,10s) from sub_empty_1 union all select elapsed(ts,10s) from regular_table_1;')
         tdSql.checkRows(1)
         tdSql.checkData(0,0,9)

         tdSql.error('select elapsed(ts,10s) from sub_empty_1 union all select elapsed(ts,10s) from stable_sub_empty group by tbname;')

         tdSql.error('select elapsed(ts,10s) from regular_table_1 union all select elapsed(ts,10s) from stable_sub_empty group by tbname;')

         tdSql.query('select elapsed(ts,10s) from sub_empty_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(1s) fill(prev) union all select elapsed(ts,10s) from sub_empty_2 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(1s) fill(prev);')
         tdSql.checkRows(0)

         tdSql.error('select elapsed(ts,10s) from sub_empty_1   union all select elapsed(ts,10s) from stable_empty  group by tbname;')

         tdSql.error('select elapsed(ts,10s) from sub_empty_1  interval(1s)  union all select elapsed(ts,10s) from stable_empty interval(1s)  group by tbname;')

         tdSql.error('select elapsed(ts,10s) from sub_empty_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(1s) fill(prev) union all select elapsed(ts,10s) from stable_empty where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(1s) fill(prev) group by tbname;')

         tdSql.query("select elapsed(ts,10s) from stable_empty  group by tbname union all select elapsed(ts,10s) from stable_empty group by tbname ;")
         tdSql.checkRows(0)

         tdSql.query("select elapsed(ts,10s) from stable_empty  group by tbname union all select elapsed(ts,10s) from stable_1 group by tbname ;")
         tdSql.checkRows(3)

         tdSql.query("select elapsed(ts,10s) from stable_1  group by tbname union all select elapsed(ts,10s) from stable_1 group by tbname ;")
         tdSql.checkRows(6)
         tdSql.checkData(0,0,9)
         tdSql.checkData(5,0,9)

         tdSql.query("select elapsed(ts,10s) from stable_1  group by tbname union all select elapsed(ts,10s) from stable_2 group by tbname ;")
         tdSql.checkRows(6)
         tdSql.checkData(0,0,9)
         tdSql.checkData(5,0,9)

         tdSql.query('select elapsed(ts,10s) from stable_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) group by tbname union all\
              select elapsed(ts,10s) from stable_2 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) group by tbname ;')
         tdSql.checkRows(360)
         tdSql.checkData(0,1,1)
         tdSql.checkData(50,1,0)

         tdSql.query('select elapsed(ts,10s) from stable_empty group by tbname union all  select elapsed(ts,10s) from stable_2 group by tbname ;')
         tdSql.checkRows(3)

         tdSql.query('select elapsed(ts,10s) from stable_1 group by tbname union all  select elapsed(ts,10s) from stable_empty group by tbname ;')
         tdSql.checkRows(3)


         tdSql.query('select elapsed(ts,10s) from stable_empty where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) group by tbname union all\
              select elapsed(ts,10s) from stable_2 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) group by tbname ;')
         tdSql.checkRows(180)

         tdSql.query('select elapsed(ts,10s) from stable_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) group by tbname union all\
              select elapsed(ts,10s) from stable_empty where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) group by tbname ;')
         tdSql.checkRows(180)

         tdSql.query('select elapsed(ts,10s) from sub_table1_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev)  union all\
              select elapsed(ts,10s) from sub_table2_2 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) ;')
         tdSql.checkRows(120)
         tdSql.checkData(0,1,1)
         tdSql.checkData(12,1,0)

         tdSql.query('select elapsed(ts,10s) from sub_table1_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev)  union all\
              select elapsed(ts,10s) from sub_table1_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) ;')
         tdSql.checkRows(120)
         tdSql.checkData(0,1,1)
         tdSql.checkData(12,1,0)

         tdSql.query('select elapsed(ts,10s) from regular_table_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev)  union all\
              select elapsed(ts,10s) from sub_table1_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) ;')
         tdSql.checkRows(120)
         tdSql.checkData(0,1,1)
         tdSql.checkData(12,1,0)

         tdSql.query('select elapsed(ts,10s) from regular_table_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev)  union all\
              select elapsed(ts,10s) from regular_table_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) ;')
         tdSql.checkRows(120)
         tdSql.checkData(0,1,1)
         tdSql.checkData(12,1,0)

         tdSql.query('select elapsed(ts,10s) from regular_table_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev)  union all\
              select elapsed(ts,10s) from regular_table_2 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) ;')
         tdSql.checkRows(120)
         tdSql.checkData(0,1,1)
         tdSql.checkData(12,1,0)

         tdSql.query('select elapsed(ts,10s) from regular_table_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev)  union all\
              select elapsed(ts,10s) from regular_table_2 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) ;')
         tdSql.checkRows(120)
         tdSql.checkData(0,1,1)
         tdSql.checkData(12,1,0)

         tdSql.query('select elapsed(ts,10s) from sub_empty_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev)  union all\
              select elapsed(ts,10s) from regular_table_2 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) ;')
         tdSql.checkRows(60)
         tdSql.checkData(0,1,1)
         tdSql.checkData(12,1,0)

         tdSql.query('select elapsed(ts,10s) from regular_table_2 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev)  union all\
              select elapsed(ts,10s) from sub_empty_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) ;')
         tdSql.checkRows(60)
         tdSql.checkData(0,1,1)
         tdSql.checkData(12,1,0)

         # stable with stable 

         tdSql.query('select elapsed(ts,10s) from stable_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev)  group by tbname union all\
              select elapsed(ts,10s) from stable_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) group by tbname;')
         tdSql.checkRows(360)
         tdSql.checkData(0,1,1)
         tdSql.checkData(12,1,0)

         tdSql.query('select elapsed(ts,10s) from regular_table_2  interval(10s)  union all  select elapsed(ts,10s) from sub_empty_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev);')
         tdSql.checkRows(10)
         tdSql.checkData(0,1,1)
         tdSql.checkData(9,1,0)

         tdSql.query('select elapsed(ts,10s) from regular_table_2  interval(10s)  union all  select elapsed(ts,10s) from regular_table_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000" interval(10s) fill(prev) ;')
         tdSql.checkRows(70)
         tdSql.checkData(0,1,1)
         tdSql.checkData(9,1,0)

         tdSql.query('select elapsed(ts,10s) from regular_table_2  interval(10s) order by ts desc union all  select elapsed(ts,10s) from regular_table_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000"  interval(10s) fill(prev) order by ts asc;')
         tdSql.checkRows(70)
         tdSql.checkData(0,1,0)
         tdSql.checkData(1,1,1)
         tdSql.checkData(9,1,1)

         tdSql.query('select elapsed(ts,10s) from stable_1 group by tbname, ind  order by ts desc union all  select elapsed(ts,10s) from stable_2 group by tbname, ind  order by ts asc ;')
         tdSql.checkRows(6)
         tdSql.checkData(0,0,9)

         tdSql.query('select elapsed(ts,10s) from stable_1 group by tbname, ind  order by ts desc union all  select elapsed(ts,10s) from stable_1 group by tbname, ind  order by ts asc ;')
         tdSql.checkRows(6)
         tdSql.checkData(0,0,9)

         tdSql.query('select elapsed(ts,10s) from stable_1  interval(10s) group by tbname,ind order by ts desc union all  select elapsed(ts,10s) from stable_2 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000"  interval(10s) fill(prev) group by tbname,ind order by ts asc ;')
         tdSql.checkRows(210)
         tdSql.checkData(0,1,0)
         tdSql.checkData(1,1,1)
         tdSql.checkData(9,1,1)

         tdSql.query('select elapsed(ts,10s) from stable_2  interval(10s) group by tbname,ind order by ts desc union all  select elapsed(ts,10s) from stable_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000"  interval(10s) fill(prev) group by tbname,ind order by ts asc ;')
         tdSql.checkRows(210)
         tdSql.checkData(0,1,0)
         tdSql.checkData(1,1,1)
         tdSql.checkData(9,1,1)

         tdSql.query('select elapsed(ts,10s) from stable_1  interval(10s) group by tbname,ind order by ts desc union all  select elapsed(ts,10s) from stable_1 where ts>="2015-01-01 00:00:00.000"  and ts < "2015-01-01 00:10:00.000"  interval(10s) fill(prev) group by tbname,ind order by ts asc ;')
         tdSql.checkRows(210)
         tdSql.checkData(0,1,0)
         tdSql.checkData(1,1,1)
         tdSql.checkData(9,1,1)

    def run(self):
        tdSql.prepare()
        self.prepare_data()
        self.basic_union()
        self.query_with_union()

     

    def stop(self):
        tdSql.close()
        tdLog.success("%s successfully executed" % __file__)

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