Commit 7407fefe authored by romanb's avatar romanb

Fix for new tests.

parent 21e0bd3d
...@@ -237,7 +237,9 @@ class Doctrine_Formatter extends Doctrine_Connection_Module ...@@ -237,7 +237,9 @@ class Doctrine_Formatter extends Doctrine_Connection_Module
*/ */
public function getTableName($table) public function getTableName($table)
{ {
return $table;
/*
return sprintf($this->conn->getAttribute(Doctrine::ATTR_TBLNAME_FORMAT), return sprintf($this->conn->getAttribute(Doctrine::ATTR_TBLNAME_FORMAT),
$table); $table);*/
} }
} }
...@@ -125,12 +125,8 @@ class Doctrine_Query_Production_VariableDeclaration extends Doctrine_Query_Produ ...@@ -125,12 +125,8 @@ class Doctrine_Query_Production_VariableDeclaration extends Doctrine_Query_Produ
$queryComponent = $parserResult->getQueryComponent($this->_componentAlias); $queryComponent = $parserResult->getQueryComponent($this->_componentAlias);
// Retrieving connection // Retrieving connection
$conn = $this->_parser->getSqlBuilder()->getConnection(); $manager = Doctrine_EntityManager::getManager();
$manager = Doctrine_Manager::getInstance(); $conn = $manager->getConnection();
if ($manager->hasConnectionForComponent($this->_componentName)) {
$conn = $manager->getConnectionForComponent($this->_componentName);
}
echo "Query Component Table Name: " . var_export($queryComponent['metadata']->getTableName(), true) . "\n"; 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