Merge pull request #12148 from taosdata/fix/tsim
fix: let the shell parse statements like create table `abd\`
This commit is contained in:
commit
81e73f1a35
|
@ -141,6 +141,9 @@ int32_t shellRunCommand(char *command) {
|
|||
*p++ = '\\';
|
||||
}
|
||||
break;
|
||||
default:
|
||||
*p++ = '\\';
|
||||
break;
|
||||
}
|
||||
*p++ = c;
|
||||
esc = false;
|
||||
|
|
Loading…
Reference in New Issue