Merge pull request #2324 from taosdata/hotfix/sangshuduo/fix-nchar-unicode-pytest
fix insert/nchar-unicode.py case.
This commit is contained in:
commit
d0c9c6c31e
|
@ -25,7 +25,6 @@ class TDTestCase:
|
|||
def run(self):
|
||||
tdSql.prepare()
|
||||
|
||||
tdSql.error('create table tb (ts timestamp, col nchar(1022))')
|
||||
tdSql.execute('create table tb (ts timestamp, col nchar(1021))')
|
||||
tdSql.execute("insert into tb values (now, 'taosdata')")
|
||||
tdSql.query("select * from tb")
|
||||
|
|
|
@ -13,7 +13,7 @@ python3 ./test.py -f insert/date.py
|
|||
python3 ./test.py -f insert/binary.py
|
||||
python3 ./test.py -f insert/nchar.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/randomNullCommit.py
|
||||
|
||||
|
|
Loading…
Reference in New Issue