correct comment
authorkonrad <konrad@6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33>
Tue, 17 Feb 2009 16:51:55 +0000 (16:51 +0000)
committerkonrad <konrad@6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33>
Tue, 17 Feb 2009 16:51:55 +0000 (16:51 +0000)
git-svn-id: https://silmor.de/svn/softmagic/smoke/trunk@268 6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33

www/inc/db/db_mysql.php

index cda3b4b..50e4f22 100644 (file)
@@ -173,7 +173,7 @@ class MysqlEngine extends DbEngine
        
        protected function columnFlag($flag,$col,$table)
        {
-               //FIXME: currently MySQL does not mark columns for indexing, since the syntax is somewhat different --> this needs to be fixed!
+               //MySQL does not mark columns for indexing directly, instead the index is appended to the table definition
                if($flag=="index"){
                        $this->tableappend.=", INDEX(".$col.")";
                        return "";