We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
版本: 8.5.0
如果字段中含有反斜线(“"), 生成修复SQL时是直接输出的,没有转移。导致执行修复SQL后反斜线丢失。最终数据还是不一致。
比如 实际值是: '!(^(?=[-+)(\d ]+$)(?:.?\d.){10,}$)' 生成的SQL是: REPLACE INTO test.t1(ID, c1) VALUES (1, '!(^(?=[-+)(\d ]+$)(?:.?\d.){10,}$)' ); 执行后的值变成了: '!(^(?=[-+)(d ]+$)(?:.?d.){10,}$)'
test
t1
ID
c1
The text was updated successfully, but these errors were encountered:
[FORMAT CHECKER NOTIFICATION]
🫱 ${\color{gold}\Huge{\textsf{Please use english to create or update issue.}}}$
Sorry, something went wrong.
No branches or pull requests
版本: 8.5.0
如果字段中含有反斜线(“"), 生成修复SQL时是直接输出的,没有转移。导致执行修复SQL后反斜线丢失。最终数据还是不一致。
比如
实际值是: '!(^(?=[-+)(\d ]+$)(?:.?\d.){10,}$)'
生成的SQL是: REPLACE INTO
test
.t1
(ID
,c1
) VALUES (1, '!(^(?=[-+)(\d ]+$)(?:.?\d.){10,}$)' );执行后的值变成了: '!(^(?=[-+)(d ]+$)(?:.?d.){10,}$)'
The text was updated successfully, but these errors were encountered: