Maria engine supports fulltext

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@529 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2008-10-15 10:39:20 +00:00
parent 93d14dcff8
commit f78779bc3f

View file

@ -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"]);