[#1091] Add missing @Support annotations on Table.crossJoin() methods

This commit is contained in:
Lukas Eder 2012-01-29 15:21:21 +00:00
parent e33e8dc7a9
commit 6091e319ee
3 changed files with 7 additions and 0 deletions

View File

@ -76,6 +76,8 @@ Bug fixes
arrays that contain NULL values
#1084 - Bind index mismatch in val(null).equal(null) and in
val(null).notEqual(null)
#1091 - Add missing @Support annotations on Table.crossJoin()
methods
Test cases
----------

View File

@ -76,6 +76,8 @@ Bug fixes
arrays that contain NULL values
#1084 - Bind index mismatch in val(null).equal(null) and in
val(null).notEqual(null)
#1091 - Add missing @Support annotations on Table.crossJoin()
methods
Test cases
----------

View File

@ -282,6 +282,7 @@ public interface Table<R extends Record> extends Type<R>, AliasProvider<Table<R>
* A join B on 1 = 1
* </pre></code>
*/
@Support
Table<Record> crossJoin(TableLike<?> table);
/**
@ -301,6 +302,7 @@ public interface Table<R extends Record> extends Type<R>, AliasProvider<Table<R>
*
* @see Factory#table(String)
*/
@Support
Table<Record> crossJoin(String sql);
/**
@ -320,6 +322,7 @@ public interface Table<R extends Record> extends Type<R>, AliasProvider<Table<R>
*
* @see Factory#table(String, Object...)
*/
@Support
Table<Record> crossJoin(String sql, Object... bindings);
/**