[#5085] Added HSQLDB @Support
This commit is contained in:
parent
c6c13f7849
commit
f771f987ee
@ -41,6 +41,7 @@
|
||||
package org.jooq;
|
||||
|
||||
import static org.jooq.SQLDialect.H2;
|
||||
import static org.jooq.SQLDialect.HSQLDB;
|
||||
import static org.jooq.SQLDialect.POSTGRES;
|
||||
|
||||
/**
|
||||
@ -54,13 +55,13 @@ public interface AlterIndexStep {
|
||||
* Add a <code>RENAME TO</code> clause to the <code>ALTER INDEX</code>
|
||||
* statement.
|
||||
*/
|
||||
@Support({ H2, POSTGRES })
|
||||
@Support({ H2, HSQLDB, POSTGRES })
|
||||
AlterIndexFinalStep renameTo(Name newName);
|
||||
|
||||
/**
|
||||
* Add a <code>RENAME TO</code> clause to the <code>ALTER INDEX</code>
|
||||
* statement.
|
||||
*/
|
||||
@Support({ H2, POSTGRES })
|
||||
@Support({ H2, HSQLDB, POSTGRES })
|
||||
AlterIndexFinalStep renameTo(String newName);
|
||||
}
|
||||
|
||||
@ -7873,7 +7873,7 @@ public interface DSLContext extends Scope , AutoCloseable {
|
||||
*
|
||||
* @see DSL#alterIndex(String)
|
||||
*/
|
||||
@Support({ H2, POSTGRES })
|
||||
@Support({ H2, HSQLDB, POSTGRES })
|
||||
AlterIndexStep alterIndex(String index);
|
||||
|
||||
/**
|
||||
@ -7881,7 +7881,7 @@ public interface DSLContext extends Scope , AutoCloseable {
|
||||
*
|
||||
* @see DSL#alterIndex(Name)
|
||||
*/
|
||||
@Support({ H2, POSTGRES })
|
||||
@Support({ H2, HSQLDB, POSTGRES })
|
||||
AlterIndexStep alterIndex(Name index);
|
||||
|
||||
/**
|
||||
|
||||
@ -6091,7 +6091,7 @@ public class DSL {
|
||||
*
|
||||
* @see DSLContext#alterIndex(String)
|
||||
*/
|
||||
@Support({ H2, POSTGRES })
|
||||
@Support({ H2, HSQLDB, POSTGRES })
|
||||
public static AlterIndexStep alterIndex(String index) {
|
||||
return using(new DefaultConfiguration()).alterIndex(index);
|
||||
}
|
||||
@ -6101,7 +6101,7 @@ public class DSL {
|
||||
*
|
||||
* @see DSLContext#alterIndex(Name)
|
||||
*/
|
||||
@Support({ H2, POSTGRES })
|
||||
@Support({ H2, HSQLDB, POSTGRES })
|
||||
public static AlterIndexStep alterIndex(Name index) {
|
||||
return using(new DefaultConfiguration()).alterIndex(index);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user