BUG: open ticket 7813 fixing dobule quoting issue in getIndexSqlDefinition

This commit is contained in:
Kirk Mayo 2012-08-27 15:05:37 +12:00
parent 530c97f671
commit 357482d6c9

View File

@ -860,7 +860,7 @@ class MSSQLDatabase extends SS_Database {
if($indexSpec['type'] == 'unique') {
if(!is_array($indexSpec['value'])) $columns = preg_split('/ *, */', trim($indexSpec['value']));
else $columns = $indexSpec['value'];
$SQL_columnList = '"' . implode('", "', $columns) . '"';
$SQL_columnList = implode(', ', $columns);
return "$drop CREATE UNIQUE INDEX $index ON \"" . $tableName . "\" ($SQL_columnList);";
}