Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
pajamian committed Mar 14, 2015
1 parent 891ad3e commit 32c2f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Vend/Table/DBI.pm
Expand Up @@ -554,7 +554,7 @@ sub create {
}
elsif(! $key_index_found) {
my $ind_name = "${tablename}_${key}";
$ind_name = $db->quote_identifer($ind_name) if $config->{QUOTE_IDENTIFIERS};
$ind_name = $db->quote_identifier($ind_name) if $config->{QUOTE_IDENTIFIERS};
$db->do("create index $ind_name on $qtable ($qkey)")
or ::logError("table %s index failed: %s" , $tablename, $DBI::errstr);
$db->commit() if $config->{Transactions};
Expand Down

0 comments on commit 32c2f30

Please sign in to comment.