Commit 7407fefe authored by romanb's avatar romanb

Fix for new tests.

parent 21e0bd3d
......@@ -57,7 +57,7 @@ class Doctrine_ClassMetadata_Factory
* @return Doctrine_Metadata
*/
public function getMetadataFor($className)
{
{
if (isset($this->_loadedMetadata[$className])) {
return $this->_loadedMetadata[$className];
}
......
......@@ -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);*/
}
}
......@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment