database_cleaner/spec
Kevin Burke f3feaa36ba
Use count(*) > 0 instead of count(*)
count(*) requires searching the entire table, which may be large.
Querying for count(*) > 0 allows MySQL to give up after a single row
is found. Since all we are doing is checking whether the row has
a single table, it should be faster to use count(*) > 0.
2018-04-24 13:55:35 -07:00
..
database_cleaner Use count(*) > 0 instead of count(*) 2018-04-24 13:55:35 -07:00
support workaround old mysql/mysql2 adapter incompatibility with MySQL 5.7.3+. 2018-04-23 15:39:40 -07:00
rcov.opts Update gems 2010-08-08 18:59:44 +01:00
spec_helper.rb upgrade to RSpec2 2012-07-08 21:38:56 -06:00