Merge pull request #10007 from taosdata/feature/3.0_liaohj

[td-11818] disable print plan.
This commit is contained in:
Haojun Liao 2022-01-25 13:01:12 +08:00 committed by GitHub
commit 8c6dc0349e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1125,8 +1125,8 @@ int32_t subPlanToString(const SSubplan* subplan, char** str, int32_t* len) {
*str = cJSON_Print(json);
cJSON_Delete(json);
printf("====Physical plan:====\n");
printf("%s\n", *str);
// printf("====Physical plan:====\n");
// printf("%s\n", *str);
*len = strlen(*str) + 1;
return TSDB_CODE_SUCCESS;
}