Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
N/A
-
Resolution: Duplicate
-
Affects Version/s: 1.6.1
-
Fix Version/s: 1.10.0
-
Component/s: Zend_Db_Select
-
Labels:None
Description
The docblock says that you can use a string, array, or Zend_Db_Select object as the first parameter with union, but the code does this right away:
if (!is_array($select)) {
$select = array();
}
Do you have any potential use cases for an api that would support both string and Zend_Db_Select?
-ralph