!5910 回退repl_scanner.l词法解析的修改

Merge pull request !5910 from cchen676/240730master
This commit is contained in:
opengauss_bot
2024-07-30 10:12:44 +00:00
committed by Gitee

View File

@ -202,13 +202,7 @@ WAIT { return K_WAIT; }
}
. {
if (u_sess->proc_cxt.clientIsSubscription) {
return T_WORD;
}
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
errmsg("syntax error: unexpected character \"%s\"", yytext)));
return T_WORD;
}
%%