Get a set of supported dialect versions and predecessors given a dialect version. The resulting set of dialects contain all the families and dialect versions that precede the argument dialect, including the argument dialect.
(SQLDialect dialect)
| 1251 | * dialect. |
| 1252 | */ |
| 1253 | @NotNull |
| 1254 | public static final Set<SQLDialect> supportedUntil(SQLDialect dialect) { |
| 1255 | return predecessors(dialect); |
| 1256 | } |
| 1257 | |
| 1258 | /** |
| 1259 | * Get a set of supported dialect versions and predecessors given a dialect |
no test coverage detected