[#4678] Plain SQL version SelectJoinStep.straightJoin() is missing @PlainSQL annotation

This commit is contained in:
lukaseder 2015-10-18 17:18:47 +02:00
parent 433129e614
commit 94d40a5202

View File

@ -1559,6 +1559,7 @@ public interface SelectJoinStep<R extends Record> extends SelectWhereStep<R> {
* @see Table#straightJoin(String, Object...)
*/
@Support({ MYSQL })
@PlainSQL
SelectOnStep<R> straightJoin(String sql, Object... bindings);
/**
@ -1573,6 +1574,7 @@ public interface SelectJoinStep<R extends Record> extends SelectWhereStep<R> {
* @see Table#straightJoin(String, QueryPart...)
*/
@Support({ MYSQL })
@PlainSQL
SelectOnStep<R> straightJoin(String sql, QueryPart... parts);
/**