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
*Issue migrated from trac ticket # 883 www.kunlunbase.com *
component: computing nodes | priority: major
记录ddl时,需要检查如下几个GUC变量的值: extern bool standard_conforming_strings; extern bool mysql_ansi_quotes; extern int backslash_quote; extern bool quote_all_identifiers; 因为这些变量影响着字符串的解析或者生成。
记录ddl时,需要检查如下几个GUC变量的值:
extern bool standard_conforming_strings; extern bool mysql_ansi_quotes; extern int backslash_quote; extern bool quote_all_identifiers;
因为这些变量影响着字符串的解析或者生成。
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
例如: -- 非sql标准模式,将‘\'作为转移字符 set standard_conforming_strings = off; create table t(a varchar(10) default 'a\n\b\n\c', b int);
例如:
-- 非sql标准模式,将‘\'作为转移字符 set standard_conforming_strings = off; create table t(a varchar(10) default 'a\n\b\n\c', b int);
No branches or pull requests
*Issue migrated from trac ticket # 883 www.kunlunbase.com *
component: computing nodes | priority: major
2022-07-07 15:30:21: smith created the issue
The text was updated successfully, but these errors were encountered: