[#8542] Add MySQL 8.0 support for LATERAL

This commit is contained in:
Knut Wannheden 2019-05-21 16:09:58 +02:00
parent 85a1d1f31e
commit 444c2f0034

View File

@ -8957,7 +8957,7 @@ public class DSL {
* WHERE e.department_id = d.department_id);
* </pre></code>
*/
@Support({ POSTGRES })
@Support({ MYSQL, POSTGRES })
public static <R extends Record> Table<R> lateral(TableLike<R> table) {
return new Lateral<R>(table.asTable());
}