fix(shell): describe show command need show whole result1

This commit is contained in:
Alex Duan 2022-11-10 16:48:24 +08:00
parent 2481f1cdb3
commit 84a1105be0
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}