Hotfix/sangshuduo/td 4136 taosdemo records morethan 32767 (#6177)
* [TD-4136]<fix>: taosdemo max records per req < 32767 * [TD-4136]<fix>: taosdemo check insert rows not more than 32767. check insert rows for progressive. * fix with answer_yes. * add extra prompt. Co-authored-by: Shuduo Sang <sdsang@taosdata.com>
This commit is contained in:
parent
608e67826d
commit
d324edadfe
|
@ -3494,6 +3494,11 @@ static bool getMetaFromInsertJsonFile(cJSON* root) {
|
|||
__func__, __LINE__);
|
||||
goto PARSE_OVER;
|
||||
} else if (numRecPerReq->valueint > MAX_RECORDS_PER_REQ) {
|
||||
printf("NOTICE: number of records per request value %"PRIu64" > %d\n\n",
|
||||
numRecPerReq->valueint, MAX_RECORDS_PER_REQ);
|
||||
printf(" number of records per request value will be set to %d\n\n",
|
||||
MAX_RECORDS_PER_REQ);
|
||||
prompt();
|
||||
numRecPerReq->valueint = MAX_RECORDS_PER_REQ;
|
||||
}
|
||||
g_args.num_of_RPR = numRecPerReq->valueint;
|
||||
|
@ -3979,10 +3984,7 @@ static bool getMetaFromInsertJsonFile(cJSON* root) {
|
|||
i, j, g_Dbs.db[i].superTbls[j].interlaceRows, g_args.num_of_RPR);
|
||||
printf(" interlace rows value will be set to num_of_records_per_req %"PRIu64"\n\n",
|
||||
g_args.num_of_RPR);
|
||||
if (!g_args.answer_yes) {
|
||||
printf(" press Enter key to continue or Ctrl-C to stop.");
|
||||
(void)getchar();
|
||||
}
|
||||
prompt();
|
||||
g_Dbs.db[i].superTbls[j].interlaceRows = g_args.num_of_RPR;
|
||||
}
|
||||
} else if (!interlaceRows) {
|
||||
|
|
Loading…
Reference in New Issue