[#8590] Support for SQLite EXPLAIN

This commit is contained in:
Knut Wannheden 2019-05-02 11:33:32 +02:00
parent 696d953036
commit 3d94a4885e

View File

@ -357,7 +357,7 @@ public interface DSLContext extends Scope , AutoCloseable {
* Run an <code>EXPLAIN</code> statement in the database to estimate the
* cardinality of the query.
*/
@Support({ H2, HSQLDB, MYSQL, POSTGRES })
@Support({ H2, HSQLDB, MYSQL, POSTGRES, SQLITE })
Explain explain(Query query);
// -------------------------------------------------------------------------