[jOOQ/jOOQ#9317] Synchronize @Support on JoinType and Table methods
This commit is contained in:
parent
70a50ada80
commit
c84100f378
@ -62,6 +62,7 @@ import static org.jooq.SQLDialect.POSTGRES;
|
||||
// ...
|
||||
// ...
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
@ -129,13 +130,13 @@ public enum JoinType {
|
||||
/**
|
||||
* <code>CROSS APPLY</code> two tables.
|
||||
*/
|
||||
@Support({})
|
||||
@Support({ POSTGRES })
|
||||
CROSS_APPLY("cross apply", false),
|
||||
|
||||
/**
|
||||
* <code>OUTER APPLY</code> two tables.
|
||||
*/
|
||||
@Support({})
|
||||
@Support({ POSTGRES })
|
||||
OUTER_APPLY("outer apply", false),
|
||||
|
||||
/**
|
||||
|
||||
@ -146,6 +146,10 @@ implements
|
||||
*/
|
||||
private static final long serialVersionUID = 8377996833996498178L;
|
||||
private static final Clause[] CLAUSES = { TABLE, TABLE_JOIN };
|
||||
|
||||
|
||||
|
||||
|
||||
private static final Set<SQLDialect> EMULATE_NATURAL_JOIN = SQLDialect.supported(CUBRID);
|
||||
private static final Set<SQLDialect> EMULATE_NATURAL_OUTER_JOIN = SQLDialect.supported(CUBRID, H2);
|
||||
private static final Set<SQLDialect> EMULATE_JOIN_USING = SQLDialect.supported(CUBRID, H2);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user