Merge pull request #12148 from taosdata/fix/tsim

fix: let the shell parse statements like create table `abd\`
This commit is contained in:
Shengliang Guan 2022-05-06 14:37:48 +08:00 committed by GitHub
commit 81e73f1a35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -141,6 +141,9 @@ int32_t shellRunCommand(char *command) {
*p++ = '\\'; *p++ = '\\';
} }
break; break;
default:
*p++ = '\\';
break;
} }
*p++ = c; *p++ = c;
esc = false; esc = false;