We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e947d2 commit c085ab5Copy full SHA for c085ab5
APIJSONORM/src/main/java/apijson/orm/AbstractSQLConfig.java
@@ -216,6 +216,16 @@ public abstract class AbstractSQLConfig<T extends Object> implements SQLConfig<T
216
RAW_MAP.put("(", "");
217
RAW_MAP.put(")", "");
218
219
+ RAW_MAP.put("&", ""); // 位运算
220
+ RAW_MAP.put("|", ""); // 位运算
221
+ RAW_MAP.put("^", ""); // 位运算
222
+ RAW_MAP.put("~", ""); // 位运算
223
+ RAW_MAP.put("&=", ""); // 位运算
224
+ RAW_MAP.put("|=", ""); // 位运算
225
+ RAW_MAP.put("~=", ""); // 位运算
226
+ RAW_MAP.put(">>", ""); // 位运算
227
+ RAW_MAP.put("<<", ""); // 位运算
228
+
229
// MySQL 关键字
230
RAW_MAP.put("AS", "");
231
RAW_MAP.put("IS NOT NULL", "");
0 commit comments