Skip to content

Commit

Permalink
Merge pull request #24135 from taosdata/fix/merge_to_main
Browse files Browse the repository at this point in the history
other: merge to main
  • Loading branch information
hjxilinx authored Dec 19, 2023
2 parents ac3ace4 + ecab665 commit f9363e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packaging/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:latest

WORKDIR /root

Expand Down
3 changes: 2 additions & 1 deletion tests/system-test/1-insert/db_tb_name_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ def tb_name_check(self):
new_tbname = ''.join(tbname1)
for sql in [f'`{dbname}`.`{new_tbname}`',f'`{new_tbname}`']:
tdSql.error(f'create table {sql} (ts timestamp,c0 int)')
tdSql.execute(f'drop database `{dbname}`')
tdSql.execute(f'trim database `{dbname}`')
tdSql.execute(f'drop database `{dbname}`')
def run(self):
self.db_name_check()
self.tb_name_check()
Expand Down

0 comments on commit f9363e7

Please sign in to comment.