Skip to content

Commit 0d99f15

Browse files
committed
Merge pull request doctrine#677 from pine3ree/patch-1
avoid recursive quoteIdentifier call
2 parents 16cafe1 + 2b4a362 commit 0d99f15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Doctrine/DBAL/Platforms/AbstractPlatform.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1825,7 +1825,7 @@ public function getCreateSchemaSQL($schemaName)
18251825
public function quoteIdentifier($str)
18261826
{
18271827
if (strpos($str, ".") !== false) {
1828-
$parts = array_map(array($this, "quoteIdentifier"), explode(".", $str));
1828+
$parts = array_map(array($this, "quoteSingleIdentifier"), explode(".", $str));
18291829

18301830
return implode(".", $parts);
18311831
}

0 commit comments

Comments
 (0)