[#1091] Add missing @Support annotations on Table.crossJoin() methods
This commit is contained in:
parent
e33e8dc7a9
commit
6091e319ee
@ -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
|
||||
----------
|
||||
|
||||
@ -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
|
||||
----------
|
||||
|
||||
@ -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);
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user