未验证 提交 770bfd7b 编写于 作者: sangshuduo's avatar sangshuduo 提交者: GitHub

[TD-4136]<fix>: taosdemo max records per req < 32767 (#6118)

Co-authored-by: NShuduo Sang <sdsang@taosdata.com>
上级 95ae968d
......@@ -4661,7 +4661,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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册