未验证 提交 2345683d 编写于 作者: H Haojun Liao 提交者: GitHub

Merge pull request #6537 from taosdata/hotfix/TD-4764

[TD-4764]fix quote issue
...@@ -248,7 +248,7 @@ int32_t shellRunCommand(TAOS* con, char* command) { ...@@ -248,7 +248,7 @@ int32_t shellRunCommand(TAOS* con, char* command) {
if (quote == c) { if (quote == c) {
quote = 0; quote = 0;
} else if (c == '\'' || c == '"') { } else if (quote == 0 && (c == '\'' || c == '"')) {
quote = c; quote = c;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册