test: limit the output

This commit is contained in:
Haojun Liao 2022-11-23 15:54:00 +08:00
parent 4d75bd69b2
commit ca1dcf4ea1
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,7 @@ TEST(testCase, projection_query_stables) {
TAOS_RES* pRes = taos_query(pConn, "use test");
taos_free_result(pRes);
pRes = taos_query(pConn, "select * from meters");
pRes = taos_query(pConn, "select * from meters limit 30000000");
if (taos_errno(pRes) != 0) {
printf("failed to select from table, reason:%s\n", taos_errstr(pRes));
taos_free_result(pRes);