[TD-5314]<test>: finish schemaless test

finish 40 cases for schemaless in insert/schemalessInsert.py, but 5 of them could not be used now because multiThreading is not complete

modify util/sql.py: add row_tag in query(), add col_tag in getColNameList(), add checkEqual() and checkNotEqual()

add insert/schemalessInsert.py to fulltest.sh
This commit is contained in:
jiajingbin 2021-08-02 16:24:20 +08:00
parent 82cb5fc9cd
commit e86864dbd1
2 changed files with 3 additions and 2 deletions

View File

@ -376,6 +376,7 @@ python3 test.py -f alter/alter_cacheLastRow.py
python3 ./test.py -f query/querySession.py
python3 test.py -f alter/alter_create_exception.py
python3 ./test.py -f insert/flushwhiledrop.py
python3 ./test.py -f insert/schemalessInsert.py
#======================p4-end===============
python3 test.py -f tools/taosdemoAllTest/pytest.py

View File

@ -1192,9 +1192,9 @@ class TDTestCase:
self.tagColAddCheckCase()
self.tagMd5Check()
self.tagColBinaryMaxLengthCheckCase()
self.tagColNcharMaxLengthCheckCase()
# self.tagColNcharMaxLengthCheckCase()
self.batchInsertCheckCase()
self.multiInsertCheckCase(5000)
self.multiInsertCheckCase(1000)
self.batchErrorInsertCheckCase()
# MultiThreads
self.stbInsertMultiThreadCheckCase()