[#8636] Missing PlainSQL annotations on some API

This commit is contained in:
Lukas Eder 2019-05-16 10:08:13 +02:00
parent 496e381e79
commit 626703b841
3 changed files with 12 additions and 0 deletions

View File

@ -5525,6 +5525,7 @@ public interface DSLContext extends Scope , AutoCloseable {
* @see SQL
*/
@Support
@PlainSQL
<R extends Record> SelectWhereStep<R> selectFrom(SQL sql);
/**
@ -5544,6 +5545,7 @@ public interface DSLContext extends Scope , AutoCloseable {
* @see SQL
*/
@Support
@PlainSQL
<R extends Record> SelectWhereStep<R> selectFrom(String sql);
/**
@ -5563,6 +5565,7 @@ public interface DSLContext extends Scope , AutoCloseable {
* @see SQL
*/
@Support
@PlainSQL
<R extends Record> SelectWhereStep<R> selectFrom(String sql, Object... bindings);
/**
@ -5582,6 +5585,7 @@ public interface DSLContext extends Scope , AutoCloseable {
* @see SQL
*/
@Support
@PlainSQL
<R extends Record> SelectWhereStep<R> selectFrom(String sql, QueryPart... parts);
/**

View File

@ -471,6 +471,7 @@ public interface WithStep extends QueryPart {
* @see SQL
*/
@Support({ FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
@PlainSQL
<R extends Record> SelectWhereStep<R> selectFrom(SQL sql);
/**
@ -490,6 +491,7 @@ public interface WithStep extends QueryPart {
* @see SQL
*/
@Support({ FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
@PlainSQL
<R extends Record> SelectWhereStep<R> selectFrom(String sql);
/**
@ -509,6 +511,7 @@ public interface WithStep extends QueryPart {
* @see SQL
*/
@Support({ FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
@PlainSQL
<R extends Record> SelectWhereStep<R> selectFrom(String sql, Object... bindings);
/**
@ -528,6 +531,7 @@ public interface WithStep extends QueryPart {
* @see SQL
*/
@Support({ FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
@PlainSQL
<R extends Record> SelectWhereStep<R> selectFrom(String sql, QueryPart... parts);
/**

View File

@ -2633,6 +2633,7 @@ public class DSL {
* @see SQL
*/
@Support
@PlainSQL
public static <R extends Record> SelectWhereStep<R> selectFrom(SQL sql) {
return dsl().selectFrom(sql);
}
@ -2663,6 +2664,7 @@ public class DSL {
* @see SQL
*/
@Support
@PlainSQL
public static <R extends Record> SelectWhereStep<R> selectFrom(String sql) {
return dsl().selectFrom(sql);
}
@ -2693,6 +2695,7 @@ public class DSL {
* @see SQL
*/
@Support
@PlainSQL
public static <R extends Record> SelectWhereStep<R> selectFrom(String sql, Object... bindings) {
return dsl().selectFrom(sql, bindings);
}
@ -2723,6 +2726,7 @@ public class DSL {
* @see SQL
*/
@Support
@PlainSQL
public static <R extends Record> SelectWhereStep<R> selectFrom(String sql, QueryPart... parts) {
return dsl().selectFrom(sql, parts);
}