Respect error in EXPLAIN (bug #3118536)

This commit is contained in:
Jakub Vrana 2010-11-26 11:09:50 +01:00
parent 3e1fca97be
commit e197ccd433

View file

@ -109,11 +109,11 @@ if (!$error && $_POST) {
}
select($result, $connection2);
echo "<p>" . ($result->num_rows ? lang('%d row(s)', $result->num_rows) : "") . $time;
if ($connection2 && preg_match("~^($space|\\()*SELECT\\b~isU", $q)) {
if ($connection2 && preg_match("~^($space|\\()*SELECT\\b~isU", $q) && ($explain = explain($connection2, $q))) {
$id = "explain-$commands";
echo ", <a href='#$id' onclick=\"return !toggle('$id');\">EXPLAIN</a>\n";
echo "<div id='$id' class='hidden'>\n";
select(explain($connection2, $q));
select($explain);
echo "</div>\n";
}
}