ZF-10704: Zend_Paginator_Adapter_DbSelect empty binds
Description
I have a query with having clause. The binds data are empty here:
line #217
$rowCount = $db->select()->from($this->_select);
my workaround:
$rowCount = $db->select()->bind($this->_select->getBind())->from($this->_select);
Comments
Posted by Bartlomiej Dudala (bdudala) on 2011-01-03T02:47:19.000+0000
I've got the same problem at line #204. The same problem, the same workaround, but with UNION clause
Posted by Bartlomiej Dudala (bdudala) on 2011-01-03T02:48:06.000+0000
Posted by Ramon Henrique Ornelas (ramon) on 2011-04-10T19:04:55.000+0000
Fixed in trunk r23854 merged r23855 to release branch 1.11 - thanks.
Posted by Ramon Henrique Ornelas (ramon) on 2011-09-09T21:48:57.000+0000
Fixed in ZF2 with GH-411