(@NotNull Schemas s)
| 247 | } |
| 248 | |
| 249 | public void compile(@NotNull Schemas s) { |
| 250 | key = s.compile(keyName, "", ""); |
| 251 | if (key != null && key instanceof Bean) |
| 252 | ((Bean)key).keyRefCount++; |
| 253 | |
| 254 | value = s.compile(valueName, "", ""); |
| 255 | if (value != null && name.equals("set") && value instanceof Bean) |
| 256 | ((Bean)value).keyRefCount++; |
| 257 | } |
| 258 | |
| 259 | private static final Map<String, String> sqlTypeTable = new HashMap<>(); |
| 260 |