MySQL Forums
Forum List  »  InnoDB

Re: Innodb full table scan if query return 0 rows
Posted by: Rick James
Date: August 25, 2016 07:37PM

I don't think partitioning provides any performance, at least not for this type of query.

Please try these (for the slow case), to see which may or may not run slow:

SELECT id FROM table WHERE created BETWEEN (date1) AND (date2) AND plug = (n);
SELECT * FROM table WHERE created BETWEEN (date1) AND (date2) AND plug = (n) LIMIT 10;

Consider filing a bug at bugs.mysql.com . If you do, please post the link to the bug in this thread.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Innodb full table scan if query return 0 rows
903
August 25, 2016 07:37PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.