Why does doctrine (1.2) use WHERE IN instead of LIMIT?
This code:
Doctrine_Query::create()
->from('Table t')
->limit(10)
->getSqlQuery();
Returns something like this:
SELECT t.id_table AS t__id_table FROM table AS t WHERE t__id_table IN (1,2,3,4,10,12,18,20,21,25);
Instead of this:
SELECT t.id_table AS t__id_table FROM table AS t LIMIT 10;
This behaivor is same for any LIMIT value. This generates a very long queries for high LIMIT values.
Bonus question: How does Doctrine know, what ids to use? (By sending another query to DB??)