Get a set of supported dialect versions and successors given a dialect version. The resulting set of dialects contain all the families and dialect versions that support the argument dialect, i.e. that succeed it, including the argument dialect.
(SQLDialect dialect)
| 1277 | * including the argument dialect. |
| 1278 | */ |
| 1279 | @NotNull |
| 1280 | public static final Set<SQLDialect> supportedBy(SQLDialect dialect) { |
| 1281 | EnumSet<SQLDialect> result = EnumSet.noneOf(SQLDialect.class); |
| 1282 | addSupportedBy(dialect, result); |
| 1283 | return result; |
| 1284 | } |
| 1285 | |
| 1286 | /** |
| 1287 | * Get a set of supported dialect versions and successors given a set of |
no test coverage detected