1
0
mirror of synced 2024-12-13 06:46:03 +03:00

Fix for new tests.

This commit is contained in:
romanb 2008-05-24 19:56:35 +00:00
parent 21e0bd3ded
commit 7407fefee2
3 changed files with 7 additions and 9 deletions

View File

@ -57,7 +57,7 @@ class Doctrine_ClassMetadata_Factory
* @return Doctrine_Metadata
*/
public function getMetadataFor($className)
{
{
if (isset($this->_loadedMetadata[$className])) {
return $this->_loadedMetadata[$className];
}

View File

@ -236,8 +236,10 @@ class Doctrine_Formatter extends Doctrine_Connection_Module
* @return string formatted table name
*/
public function getTableName($table)
{
{
return $table;
/*
return sprintf($this->conn->getAttribute(Doctrine::ATTR_TBLNAME_FORMAT),
$table);
$table);*/
}
}

View File

@ -125,12 +125,8 @@ class Doctrine_Query_Production_VariableDeclaration extends Doctrine_Query_Produ
$queryComponent = $parserResult->getQueryComponent($this->_componentAlias);
// Retrieving connection
$conn = $this->_parser->getSqlBuilder()->getConnection();
$manager = Doctrine_Manager::getInstance();
if ($manager->hasConnectionForComponent($this->_componentName)) {
$conn = $manager->getConnectionForComponent($this->_componentName);
}
$manager = Doctrine_EntityManager::getManager();
$conn = $manager->getConnection();
echo "Query Component Table Name: " . var_export($queryComponent['metadata']->getTableName(), true) . "\n";