I am using
"com.h2database" % "h2" % "1.4.192",
MySQL mode with JDBC driver:
jdbc:h2:mem:test;MODE=MYSQL;
I cannot find any information about the support for STRAIGHT_JOIN neither on the web nor in H2 docs. I am getting a SyntaxError both if I add it to a query after a SELECT, or if I replace a JOIN with it.
Is this intended ? Even in case it makes no sense to H2's query optimizer, the term should be ignored and maybe output a warning instead of an error.