From 84a1105be01405e2ced5f692cf29ad9b845af55b Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Thu, 10 Nov 2022 16:48:24 +0800 Subject: [PATCH] fix(shell): describe show command need show whole result1 --- tools/shell/src/shellEngine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/shell/src/shellEngine.c b/tools/shell/src/shellEngine.c index 82550fb4e9..8402a5a589 100644 --- a/tools/shell/src/shellEngine.c +++ b/tools/shell/src/shellEngine.c @@ -550,7 +550,7 @@ bool shellIsShowWhole(const char *sql) { if (taosStrCaseStr(sql, "describe ") != NULL) { return true; } - // describe + // show if (taosStrCaseStr(sql, "show ") != NULL) { return true; }