Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.5.1
-
Fix Version/s: 1.6.0
-
Component/s: Zend_Db_Select
-
Labels:None
Description
the following code generate an invalid select column
// ... $dbSelect->joinInner( array($tableAs => $table), $where, null ); // -> SELECT [.....] `myTableAs`.``, .[....] FROM [.....] // `myTableAs`.`` is wrong
but the following success
// ...
$dbSelect->joinInner(
array($tableAs => $table),
$where,
array()
);
Class will be reworked by Simon... sorry if I confused anybody. He has a better overview over the complete Db design, not only Zend_Db_Select and will help better than me.