fix: let the shell parse statements like create table `abd\`

This commit is contained in:
Shengliang Guan 2022-05-06 14:04:37 +08:00
parent ae9056567c
commit b72849aaeb
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;