test: adding test case for TS-30951
This commit is contained in:
parent
333e1a97d5
commit
dd46121a8a
|
@ -544,6 +544,8 @@
|
|||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/limit.py
|
||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/log.py
|
||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/log.py -R
|
||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/logical_operators.py
|
||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/logical_operators.py -R
|
||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/lower.py
|
||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/lower.py -R
|
||||
,,y,system-test,./pytest.sh python3 ./test.py -f 2-query/ltrim.py
|
||||
|
|
|
@ -0,0 +1,119 @@
|
|||
from wsgiref.headers import tspecials
|
||||
from util.log import *
|
||||
from util.cases import *
|
||||
from util.sql import *
|
||||
import numpy as np
|
||||
|
||||
class TDTestCase:
|
||||
def init(self, conn, logSql, replicaVar=1):
|
||||
self.replicaVar = int(replicaVar)
|
||||
tdLog.debug("start to execute %s" % __file__)
|
||||
tdSql.init(conn.cursor())
|
||||
|
||||
self.rowNum = 10
|
||||
self.batchNum = 5
|
||||
self.ts = 1537146000000
|
||||
|
||||
def run(self):
|
||||
dbname = "db"
|
||||
tdSql.prepare()
|
||||
|
||||
tdSql.execute(f'''create table tb (ts timestamp, v int, f float, b varchar(8))''')
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:00:00', 1, 2.0, 't0')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:01:00', 11, 12.1, 't0')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:02:00', 21, 22.2, 't0')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:03:00', 31, 32.3, 't0')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:04:00', 41, 42.4, 't0')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:05:00', 51, 52.5, 't1')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:06:00', 61, 62.6, 't1')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:07:00', 71, 72.7, 't1')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:08:00', 81, 82.8, 't1')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:09:00', 91, 92.9, 't1')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:00:00',101,112.9, 't2')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:01:00',111,112.1, 't2')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:02:00',121,122.2, 't2')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:03:00',131,132.3, 't2')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:04:00',141,142.4, 't2')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:05:00',151,152.5, 't3')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:06:00',161,162.6, 't3')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:07:00',171,172.7, 't3')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:08:00',181,182.8, 't3')")
|
||||
tdSql.execute(f"insert into tb values('2024-07-04 10:09:00',191,192.9, 't3')")
|
||||
#test for operator and
|
||||
tdSql.query('''select
|
||||
`T_9048C6F41B2A45CE94FF3`.`ts` as `__fcol_0`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` as `__fcol_1`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`f` as `__fcol_2`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`b` as `__fcol_3`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` > 0
|
||||
and `T_9048C6F41B2A45CE94FF3`.`f` > `T_9048C6F41B2A45CE94FF3`.`v`
|
||||
from `db`.`tb` as `T_9048C6F41B2A45CE94FF3`
|
||||
limit 5000''')
|
||||
tdSql.checkRows(10)
|
||||
#test for operator or
|
||||
tdSql.query('''select
|
||||
`T_9048C6F41B2A45CE94FF3`.`ts` as `__fcol_0`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` as `__fcol_1`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`f` as `__fcol_2`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`b` as `__fcol_3`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` > 0
|
||||
or `T_9048C6F41B2A45CE94FF3`.`f` > `T_9048C6F41B2A45CE94FF3`.`v`
|
||||
from `db`.`tb` as `T_9048C6F41B2A45CE94FF3`
|
||||
limit 5000''')
|
||||
tdSql.checkRows(10)
|
||||
#test for operator in
|
||||
tdSql.query('''select
|
||||
`T_9048C6F41B2A45CE94FF3`.`ts` as `__fcol_0`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` as `__fcol_1`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`f` as `__fcol_2`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`b` as `__fcol_3`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` in (1)
|
||||
from `db`.`tb` as `T_9048C6F41B2A45CE94FF3`
|
||||
limit 5000;''')
|
||||
tdSql.checkRows(10)
|
||||
#test for operator not
|
||||
tdSql.query('''select
|
||||
`T_9048C6F41B2A45CE94FF3`.`ts` as `__fcol_0`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` as `__fcol_1`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`f` as `__fcol_2`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`b` as `__fcol_3`,
|
||||
not `T_9048C6F41B2A45CE94FF3`.`v` > 0
|
||||
from `db`.`tb` as `T_9048C6F41B2A45CE94FF3`
|
||||
limit 5000''')
|
||||
tdSql.checkRows(10)
|
||||
#test for operator between and
|
||||
tdSql.query('''select
|
||||
`T_9048C6F41B2A45CE94FF3`.`ts` as `__fcol_0`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` as `__fcol_1`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`f` as `__fcol_2`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`b` as `__fcol_3`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` between 1 and 200
|
||||
from `db`.`tb` as `T_9048C6F41B2A45CE94FF3`
|
||||
limit 5000''')
|
||||
tdSql.checkRows(10)
|
||||
#test for operator is null
|
||||
tdSql.query('''select
|
||||
`T_9048C6F41B2A45CE94FF3`.`ts` as `__fcol_0`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` as `__fcol_1`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`f` as `__fcol_2`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`b` as `__fcol_3`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` is null
|
||||
from `db`.`tb` as `T_9048C6F41B2A45CE94FF3`
|
||||
limit 5000''')
|
||||
tdSql.checkRows(10)
|
||||
#test for operator is not null
|
||||
tdSql.query('''select
|
||||
`T_9048C6F41B2A45CE94FF3`.`ts` as `__fcol_0`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` as `__fcol_1`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`f` as `__fcol_2`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`b` as `__fcol_3`,
|
||||
`T_9048C6F41B2A45CE94FF3`.`v` is not null
|
||||
from `db`.`tb` as `T_9048C6F41B2A45CE94FF3`
|
||||
limit 5000''')
|
||||
tdSql.checkRows(10)
|
||||
def stop(self):
|
||||
tdSql.close()
|
||||
tdLog.success("%s successfully executed" % __file__)
|
||||
|
||||
tdCases.addWindows(__file__, TDTestCase())
|
||||
tdCases.addLinux(__file__, TDTestCase())
|
Loading…
Reference in New Issue