let case run CI

This commit is contained in:
wenzhouwww@live.cn 2022-05-05 18:40:13 +08:00
parent f36b5dda10
commit 75214a5a6c
2 changed files with 9 additions and 8 deletions

View File

@ -191,13 +191,13 @@ class TDTestCase:
def support_types(self): def support_types(self):
type_error_sql_lists = [ type_error_sql_lists = [
"select log(ts ,2 ) from t1" , "select log(ts ,2 ) from t1" ,
"select log(c7,2 ) from t1", "select log(c7,c2 ) from t1",
"select log(c8,2 ) from t1", "select log(c8,c1 ) from t1",
"select log(c9,2 ) from t1", "select log(c9,c2 ) from t1",
"select log(ts,2 ) from ct1" , "select log(ts,c7 ) from ct1" ,
"select log(c7,2 ) from ct1", "select log(c7,c9 ) from ct1",
"select log(c8,2 ) from ct1", "select log(c8,c2 ) from ct1",
"select log(c9,2 ) from ct1", "select log(c9,c1 ) from ct1",
"select log(ts,2 ) from ct3" , "select log(ts,2 ) from ct3" ,
"select log(c7,2 ) from ct3", "select log(c7,2 ) from ct3",
"select log(c8,2 ) from ct3", "select log(c8,2 ) from ct3",

View File

@ -23,3 +23,4 @@ python3 ./test.py -f 2-query/ceil.py
python3 ./test.py -f 2-query/floor.py python3 ./test.py -f 2-query/floor.py
python3 ./test.py -f 2-query/round.py python3 ./test.py -f 2-query/round.py
python3 ./test.py -f 2-query/log.py python3 ./test.py -f 2-query/log.py
python3 ./test.py -f 2-query/pow.py