Merge pull request #2324 from taosdata/hotfix/sangshuduo/fix-nchar-unicode-pytest

fix insert/nchar-unicode.py case.
This commit is contained in:
Shengliang Guan 2020-06-17 18:07:57 +08:00 committed by GitHub
commit d0c9c6c31e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -25,7 +25,6 @@ class TDTestCase:
def run(self): def run(self):
tdSql.prepare() tdSql.prepare()
tdSql.error('create table tb (ts timestamp, col nchar(1022))')
tdSql.execute('create table tb (ts timestamp, col nchar(1021))') tdSql.execute('create table tb (ts timestamp, col nchar(1021))')
tdSql.execute("insert into tb values (now, 'taosdata')") tdSql.execute("insert into tb values (now, 'taosdata')")
tdSql.query("select * from tb") tdSql.query("select * from tb")

View File

@ -13,7 +13,7 @@ python3 ./test.py -f insert/date.py
python3 ./test.py -f insert/binary.py python3 ./test.py -f insert/binary.py
python3 ./test.py -f insert/nchar.py python3 ./test.py -f insert/nchar.py
# python3 ./test.py -f insert/nchar-boundary.py # python3 ./test.py -f insert/nchar-boundary.py
# python3 ./test.py -f insert/nchar-unicode.py python3 ./test.py -f insert/nchar-unicode.py
python3 ./test.py -f insert/multi.py python3 ./test.py -f insert/multi.py
python3 ./test.py -f insert/randomNullCommit.py python3 ./test.py -f insert/randomNullCommit.py