Hotfix/sangshuduo/td 3969 reenable batch create tbl num (#5935)
* [TD-3414]<test>: add insert function with json files of taodemo-testcase -repeat * [TD-3879]add stmt mode for taodemo go * [TD-3414]<test>: add insert function with json files of taodemo-testcase * [TD-3918] <test> add case to verify the bug of TD-3897 * [TD-3453]<test>:modify filepath in scripts * Update fulltest.sh * [TD-3918] <test> fix the case * Update queryFilterTswithDateUnit.py * [TD-3850]<fix>: fix vnode write enqueue flowctrl UAF & no response * Hotfix/sangshuduo/td 3401 query statistic (#5907) * [TD-3401]<fix>: taosdemo query statistic. refactor func name. * [TD-3401]<fix>: taosdemo query statistic. refactor func name 2. * [TD-3401]<fix>: taosdemo support query statistic. implementation. * cleanup * [TD-3401]<fix>: taosdemo query statistic. change us to ms. * [TD-3401]<fix>: taosdemo query statistic. increase sql buffer for query. * [TD-3401]<fix>: taosdemo query statistic more accurate result. * [TD-3401]<fix>: taosdemo query statistic. modify last time logic. Co-authored-by: Shuduo Sang <sdsang@taosdata.com> * improve coverage of operations * [TD-3944]<fix>: make default offline threshold to 10 days. (#5912) Co-authored-by: Shuduo Sang <sdsang@taosdata.com> * [TD-3572]<enhance>: response out of dnodes if #dnodes <= maxDbReplica * [TD-3937]<test>: add taosdemo performance test compare scripts * update script * Hotfix/sangshuduo/td 3317 for master (#5921) * [TD-3317]<fix>: taosdemo interlace insertion. patch for master. * [TD-3317]<fix>: taosdemo support interlace mode. adjust remainder rows logic. * [TD-3317]<fix>: taosdemo support interlace mode. fix global and stable interlace rows logic. * [TD-3317]<fix>: taosdemo support interlace mode. fix 'interlaceRows' is used uninitialized Co-authored-by: Shuduo Sang <sdsang@taosdata.com> * [TD-3968]<fix>: taosdemo data length should be 16*1024 (#5926) Co-authored-by: Shuduo Sang <sdsang@taosdata.com> * [TD-3969]<fix>: taosdemo re-enable batch-create-tbl-num Co-authored-by: tomchon <haoran920c@163.com> Co-authored-by: liuyq-617 <yqliu@taosdata.com> Co-authored-by: wu champion <wuchampion@foxmail.com> Co-authored-by: wu champion <cpwu@taosdata.com> Co-authored-by: Minglei Jin <mljin@taosdata.com> Co-authored-by: huili <52318143+plum-lihui@users.noreply.github.com> Co-authored-by: Shengliang Guan <slguan@taosdata.com> Co-authored-by: Shuduo Sang <sdsang@taosdata.com> Co-authored-by: Ping Xiao <pxiao@taosdata.com>
This commit is contained in:
parent
e8f7addc2c
commit
70ac290aa4
|
@ -3657,7 +3657,6 @@ static bool getMetaFromInsertJsonFile(cJSON* root) {
|
|||
goto PARSE_OVER;
|
||||
}
|
||||
|
||||
/*
|
||||
cJSON* batchCreateTbl = cJSON_GetObjectItem(stbInfo, "batch_create_tbl_num");
|
||||
if (batchCreateTbl && batchCreateTbl->type == cJSON_Number) {
|
||||
g_Dbs.db[i].superTbls[j].batchCreateTableNum = batchCreateTbl->valueint;
|
||||
|
@ -3667,7 +3666,6 @@ static bool getMetaFromInsertJsonFile(cJSON* root) {
|
|||
printf("ERROR: failed to read json, batch_create_tbl_num not found\n");
|
||||
goto PARSE_OVER;
|
||||
}
|
||||
*/
|
||||
|
||||
cJSON *childTblExists = cJSON_GetObjectItem(stbInfo, "child_table_exists"); // yes, no
|
||||
if (childTblExists
|
||||
|
|
Loading…
Reference in New Issue