Ticket #973 (closed defect: fixed)
Missing IN() when used in Where clauses
Description
Running a query
$conn->query("FROM TABLE t WHERE t.firstId = 1 AND t.secondId IN(46) AND t.complete = 1");
Produces the where clause (From Dumped Doctrine_Connection_Mysql_Exception)
WHERE (v.websiteid = 1 AND AND v.encodecomplete = 1)
The IN(46) is complete removed. I can do this with a Doctrine Query also, same results. The example all imply that IN() is valid.
Change History
Note: See
TracTickets for help on using
tickets.