restart ci

This commit is contained in:
slzhou 2023-11-01 16:24:54 +08:00
parent 4a2c52783b
commit 5f52f8940f
1 changed files with 5 additions and 2 deletions

View File

@ -149,10 +149,13 @@ int main(int argc, char *argv[]) {
exit(1);
}
char* qstr = malloc(1024*1024);
for (int i =0; i < 5; ++i)
for (int i =0; i < 5; ++i) {
testInsert(taos, qstr);
for (int i =0; i < 5; ++i)
}
printf("test insert into stb tbname\n\n");
for (int i =0; i < 5; ++i) {
testInsertStb(taos, qstr);
}
free(qstr);
taos_close(taos);
taos_cleanup();