mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
80 lines
2.4 KiB
Python
80 lines
2.4 KiB
Python
import time
|
|
from new_test_framework.utils import tdLog, tdSql, sc, clusterComCheck, clusterComCheck
|
|
|
|
|
|
class TestDatabaseRepeat:
|
|
|
|
def setup_class(cls):
|
|
tdLog.debug(f"start to execute {__file__}")
|
|
|
|
def test_database_repeat(self):
|
|
"""create db repeat
|
|
|
|
1. -
|
|
|
|
Catalog:
|
|
- Database:Create
|
|
|
|
Since: v3.0.0.0
|
|
|
|
Labels: common,ci
|
|
|
|
Jira: None
|
|
|
|
History:
|
|
- 2025-4-30 Simon Guan Migrated to new test framework, from tsim/db/repeat.sim
|
|
|
|
"""
|
|
|
|
tdLog.info(f"============================ dnode1 start")
|
|
|
|
tdSql.execute(f"create database d1")
|
|
tdSql.execute(f"create table d1.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"create database d2")
|
|
tdSql.execute(f"create table d2.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"create database d3")
|
|
tdSql.execute(f"create table d3.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"create database d4")
|
|
tdSql.execute(f"create table d4.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"drop database d1")
|
|
tdSql.execute(f"drop database d2")
|
|
tdSql.execute(f"drop database d3")
|
|
tdSql.execute(f"drop database d4")
|
|
|
|
tdSql.execute(f"create database d5")
|
|
tdSql.execute(f"create table d5.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"create database d6")
|
|
tdSql.execute(f"create table d6.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"create database d7")
|
|
tdSql.execute(f"create table d7.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"create database d8")
|
|
tdSql.execute(f"create table d8.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"drop database d5")
|
|
tdSql.execute(f"drop database d6")
|
|
tdSql.execute(f"drop database d7")
|
|
tdSql.execute(f"drop database d8")
|
|
|
|
tdSql.execute(f"create database d9;")
|
|
tdSql.execute(f"create table d9.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"create database d10;")
|
|
tdSql.execute(f"create table d10.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"create database d11")
|
|
tdSql.execute(f"create table d11.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"create database d12")
|
|
tdSql.execute(f"create table d12.t1(ts timestamp, i int)")
|
|
|
|
tdSql.execute(f"drop database d9")
|
|
tdSql.execute(f"drop database d10")
|
|
tdSql.execute(f"drop database d11")
|
|
tdSql.execute(f"drop database d12")
|