[jOOQ/jOOQ#9316] Also support STRAIGHT_JOIN for MariaDB and MemSQL

This commit is contained in:
Knut Wannheden 2019-10-02 08:53:20 +02:00
parent 19702a79f1
commit 98799f78eb

View File

@ -141,7 +141,7 @@ public enum JoinType {
/**
* <code>STRAIGHT_JOIN</code> two tables.
*/
@Support({ MYSQL })
@Support({ MARIADB, MYSQL })
STRAIGHT_JOIN("straight_join", true),
/**