Hotfix/sangshuduo/td 4136 taosdemo records morethan 32767 for develop (#6148)
* [TD-4136]<fix>: taosdemo records per req more than 32767. for develop branch. * change taosRandom() to rand_bool() for bool data. * [TD-4136]<fix>: taosdemo check insert rows not more than 32767. check insert rows for progressive. * fix with answer_yes. Co-authored-by: Shuduo Sang <sdsang@taosdata.com>
This commit is contained in:
parent
e8d2162cce
commit
42771b3145
|
@ -4703,7 +4703,7 @@ static int64_t generateData(char *recBuf, char **data_type,
|
|||
double t = rand_double();
|
||||
pstr += sprintf(pstr, ",%20.8f", t);
|
||||
} else if (strcasecmp(data_type[i % c], "BOOL") == 0) {
|
||||
bool b = taosRandom() & 1;
|
||||
bool b = rand_bool() & 1;
|
||||
pstr += sprintf(pstr, ",%s", b ? "true" : "false");
|
||||
} else if (strcasecmp(data_type[i % c], "BINARY") == 0) {
|
||||
char *s = malloc(lenOfBinary);
|
||||
|
|
Loading…
Reference in New Issue