disabled index generation again for db other then MySQL, til i fixed it

This commit is contained in:
Ralf Becker 2003-10-22 12:54:39 +00:00
parent 4b4afd3c23
commit e4c0b82b2b

View File

@ -324,7 +324,9 @@
}
}
if(count($aTableDef['ix']) > 0)
// fast hack to enable this only for MySQL, as I need to fix it for the other db's
// which dont like indices in contrain syntax
if(count($aTableDef['ix']) > 0 && $this->sType == 'mysql')
{
if(!$this->_GetIX($aTableDef['ix'], $sIXSQL))
{