Skip to content

Commit

Permalink
FIXED: Minor typo in string concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
tractorcow committed Sep 24, 2012
1 parent 9924c8d commit ef4cd20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/PostgreSQLDatabase.php
Expand Up @@ -485,7 +485,7 @@ function buildPostgresIndexName($tableName, $indexName, $prefix = 'ix') {
// Assume all indexes also contain the table name
// MD5 the table/index name combo to keep it to a fixed length.
// Exclude the prefix so that the trigger name can be easily generated from the index name
$indexNamePG = "{$prefix}_" . md5("$tableName}_{$indexName}");
$indexNamePG = "{$prefix}_" . md5("{$tableName}_{$indexName}");

// Limit to 63 characters
if (strlen($indexNamePG) > 63)
Expand Down

0 comments on commit ef4cd20

Please sign in to comment.