Fix fast parser result is not compatible with oracle

This commit is contained in:
obdev
2023-05-30 12:23:14 +00:00
committed by ob-robot
parent e9f4b1c8d8
commit 399955b9a7

View File

@ -2353,9 +2353,6 @@ int ObFastParserOracle::process_string(const bool in_q_quote)
break;
} else if ('\\' == ch) {
tmp_buf_[tmp_buf_len_++] = '\\';
if (in_q_quote) {
tmp_buf_[tmp_buf_len_++] = '\\';
}
} else if ('\'' == ch) {
if ('\'' == raw_sql_.peek()) { // double quote
ch = raw_sql_.scan();