[#5087] Added @Support annotations

This commit is contained in:
lukaseder 2016-12-22 12:43:02 +01:00
parent cedf0b4f53
commit a7414508ca
2 changed files with 6 additions and 6 deletions

View File

@ -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);
/**

View File

@ -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);
}