1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-07 15:16:44 +02:00

SQLite: Use EXPLAIN QUERY PLAN in SQL query (bug #443)

This commit is contained in:
Jakub Vrana
2015-03-06 10:02:45 -08:00
parent 8aa420d160
commit 8dde91b2a1
2 changed files with 2 additions and 1 deletions

View File

@@ -691,7 +691,7 @@ if (isset($_GET["sqlite"]) || isset($_GET["sqlite2"])) {
}
function explain($connection, $query) {
return $connection->query("EXPLAIN $query");
return $connection->query("EXPLAIN QUERY PLAN $query");
}
function found_rows($table_status, $where) {

View File

@@ -1,5 +1,6 @@
Adminer 4.2.1-dev:
MySQL: Use utf8mb4 in export only if required
SQLite: Use EXPLAIN QUERY PLAN in SQL query
Adminer 4.2.0 (released 2015-02-07):
Fix XSS in login form (bug #436)