+* Add missing quote function to SQLServer producer
* Fix incorrect Parser::DBI documentation (RT#60878)
# ----------------------------------------------------------
'CREATE UNIQUE NONCLUSTERED INDEX ' .
$self->unique_constraint_name($constraint) .
' ON ' . $self->quote($constraint->table->name) . ' (' .
- join( ', ', $constraint->fields ) . ')' .
+ join( ', ', map $self->quote($_), $constraint->fields ) . ')' .
' WHERE ' . join( ' AND ',
map $self->quote($_->name) . ' IS NOT NULL',
grep { $_->is_nullable } $constraint->fields ) . ';'