[#5087] Added @Support annotations
This commit is contained in:
parent
cedf0b4f53
commit
a7414508ca
@ -7753,7 +7753,7 @@ public interface DSLContext extends Scope , AutoCloseable {
|
||||
*
|
||||
* @see DSL#alterTableIfExists(String)
|
||||
*/
|
||||
@Support
|
||||
@Support({ H2, POSTGRES })
|
||||
AlterTableStep alterTableIfExists(String table);
|
||||
|
||||
/**
|
||||
@ -7761,7 +7761,7 @@ public interface DSLContext extends Scope , AutoCloseable {
|
||||
*
|
||||
* @see DSL#alterTableIfExists(Name)
|
||||
*/
|
||||
@Support
|
||||
@Support({ H2, POSTGRES })
|
||||
AlterTableStep alterTableIfExists(Name table);
|
||||
|
||||
/**
|
||||
@ -7769,7 +7769,7 @@ public interface DSLContext extends Scope , AutoCloseable {
|
||||
*
|
||||
* @see DSL#alterTableIfExists(Table)
|
||||
*/
|
||||
@Support
|
||||
@Support({ H2, POSTGRES })
|
||||
AlterTableStep alterTableIfExists(Table<?> table);
|
||||
|
||||
/**
|
||||
|
||||
@ -5941,7 +5941,7 @@ public class DSL {
|
||||
*
|
||||
* @see DSLContext#alterTableIfExists(String)
|
||||
*/
|
||||
@Support
|
||||
@Support({ H2, POSTGRES })
|
||||
public static AlterTableStep alterTableIfExists(String table) {
|
||||
return using(new DefaultConfiguration()).alterTableIfExists(table);
|
||||
}
|
||||
@ -5951,7 +5951,7 @@ public class DSL {
|
||||
*
|
||||
* @see DSLContext#alterTableIfExists(Name)
|
||||
*/
|
||||
@Support
|
||||
@Support({ H2, POSTGRES })
|
||||
public static AlterTableStep alterTableIfExists(Name table) {
|
||||
return using(new DefaultConfiguration()).alterTableIfExists(table);
|
||||
}
|
||||
@ -5961,7 +5961,7 @@ public class DSL {
|
||||
*
|
||||
* @see DSLContext#alterTableIfExists(Table)
|
||||
*/
|
||||
@Support
|
||||
@Support({ H2, POSTGRES })
|
||||
public static AlterTableStep alterTableIfExists(Table<?> table) {
|
||||
return using(new DefaultConfiguration()).alterTableIfExists(table);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user