From f78779bc3fd9b3896432a1117099e915ccf80f48 Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Wed, 15 Oct 2008 10:39:20 +0000 Subject: [PATCH] Maria engine supports fulltext git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@529 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- select.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/select.inc.php b/select.inc.php index 67e601fb..062c160d 100644 --- a/select.inc.php +++ b/select.inc.php @@ -2,7 +2,7 @@ $table_status = table_status($_GET["select"]); $indexes = indexes($_GET["select"]); $operators = array("=", "<", ">", "<=", ">=", "!=", "LIKE", "REGEXP", "IN", "IS NULL", "NOT LIKE", "NOT REGEXP", "NOT IN", "IS NOT NULL"); -if ($table_status["Engine"] == "MyISAM") { +if (eregi('^(MyISAM|Maria)$', $table_status["Engine"])) { $operators[] = "AGAINST"; } $fields = fields($_GET["select"]);