Merge pull request #6308 from taosdata/test/m-TD-4447

[TD-4447]<test>import the same csv twice
This commit is contained in:
Shengliang Guan 2021-05-31 18:35:31 +08:00 committed by GitHub
commit d19d4a2554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -82,6 +82,8 @@ class TDTestCase:
tdSql.execute("import into tbx file \'%s\'"%(self.csvfile))
tdSql.query('select * from tbx')
tdSql.checkRows(self.rows)
#TD-4447 import the same csv twice
tdSql.execute("import into tbx file \'%s\'"%(self.csvfile))
def stop(self):
self.destroyCSVFile()