|
mk_archiver
Roadmap and vision for mk-archiver
This tool is mature and stable. However, there are a couple of things we can consider improving in the future.
There is also an interesting and potentially unsolvable problem with LIMIT. The problem is, if fewer than LIMIT rows match the WHERE clause, a SELECT might continue scanning unwanted rows for a very long time. It would be nice to be able to instruct the tool to scan no more than X rows and then give up (consider there to be no more matches, even if there are unexamined rows). The only possible solution that has presented itself is a subquery in the FROM clause, e.g. SELECT ... FROM ( SELECT ... FROM tbl LIMIT 1000 ) AS x WHERE .... LIMIT 100 |