1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-11 09:04:02 +02:00

Hide materialized views in MySQL

This commit is contained in:
Jakub Vrana
2017-02-19 15:11:05 +01:00
parent 346353153d
commit e4d35f9591

View File

@@ -1021,7 +1021,7 @@ if (!defined("DRIVER")) {
*/ */
function support($feature) { function support($feature) {
global $connection; global $connection;
return !preg_match("~scheme|sequence|type|view_trigger" . ($connection->server_info < 5.1 ? "|event|partitioning" . ($connection->server_info < 5 ? "|routine|trigger|view" : "") : "") . "~", $feature); return !preg_match("~scheme|sequence|type|view_trigger|materializedview" . ($connection->server_info < 5.1 ? "|event|partitioning" . ($connection->server_info < 5 ? "|routine|trigger|view" : "") : "") . "~", $feature);
} }
function kill_process($val) { function kill_process($val) {