From b0c71f36b1287c581a8587f154763db406cdb642 Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Tue, 19 Dec 2023 14:07:55 +0800 Subject: [PATCH] fix:disable print planner string --- source/common/src/tglobal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/src/tglobal.c b/source/common/src/tglobal.c index d362a73145..d32f32d3fb 100644 --- a/source/common/src/tglobal.c +++ b/source/common/src/tglobal.c @@ -148,7 +148,7 @@ bool tsEnableQueryHb = true; bool tsEnableScience = false; // on taos-cli show float and doulbe with scientific notation if true int32_t tsQuerySmaOptimize = 0; int32_t tsQueryRsmaTolerance = 1000; // the tolerance time (ms) to judge from which level to query rsma data. -bool tsQueryPlannerTrace = true; +bool tsQueryPlannerTrace = false; int32_t tsQueryNodeChunkSize = 32 * 1024; bool tsQueryUseNodeAllocator = true; bool tsKeepColumnName = false;