未验证 提交 64924454 编写于 作者: H Hui Li 提交者: GitHub

Merge pull request #20802 from taosdata/fix/TD-AUTOGET-MAIN

test: change autogen.py random to fixed
......@@ -51,10 +51,7 @@ class AutoGen:
metas = []
for i in range(cnt):
colname = f"{pre}{i}"
if i < len(types):
sel = i
else:
sel = random.randint(0, len(types)-1)
sel = i % len(types)
coltype = types[sel]
sql = f"{colname} {coltype}"
if sqls != "":
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册