提交 0c601395 编写于 作者: H Haojun Liao

test: update test ut.

上级 50ecf9eb
...@@ -52,15 +52,15 @@ void printResult(TAOS_RES* pRes) { ...@@ -52,15 +52,15 @@ void printResult(TAOS_RES* pRes) {
int32_t n = 0; int32_t n = 0;
char str[512] = {0}; char str[512] = {0};
while ((pRow = taos_fetch_row(pRes)) != NULL) { while ((pRow = taos_fetch_row(pRes)) != NULL) {
int32_t* length = taos_fetch_lengths(pRes); // int32_t* length = taos_fetch_lengths(pRes);
for(int32_t i = 0; i < numOfFields; ++i) { // for(int32_t i = 0; i < numOfFields; ++i) {
printf("(%d):%d " , i, length[i]); // printf("(%d):%d " , i, length[i]);
} // }
printf("\n"); // printf("\n");
//
int32_t code = taos_print_row(str, pRow, pFields, numOfFields); // int32_t code = taos_print_row(str, pRow, pFields, numOfFields);
printf("%s\n", str); // printf("%s\n", str);
memset(str, 0, sizeof(str)); // memset(str, 0, sizeof(str));
} }
} }
...@@ -701,6 +701,7 @@ TEST(testCase, projection_query_tables) { ...@@ -701,6 +701,7 @@ TEST(testCase, projection_query_tables) {
for (int32_t i = 0; i < 5000; ++i) { for (int32_t i = 0; i < 5000; ++i) {
pRes = taos_query(pConn, pRes = taos_query(pConn,
"SELECT _wstart as ts,max(usage_user) FROM t_76 WHERE ts >= 1451618560000 AND ts < 1451622160000 INTERVAL(1m)"); "SELECT _wstart as ts,max(usage_user) FROM t_76 WHERE ts >= 1451618560000 AND ts < 1451622160000 INTERVAL(1m)");
printResult(pRes);
taos_free_result(pRes); taos_free_result(pRes);
// printf("create table :%d\n", i); // printf("create table :%d\n", i);
// createNewTable(pConn, i); // createNewTable(pConn, i);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册