[#5085] Added HSQLDB @Support

This commit is contained in:
lukaseder 2016-12-22 15:08:14 +01:00
parent c6c13f7849
commit f771f987ee
3 changed files with 7 additions and 6 deletions

View File

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

View File

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

View File

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