aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/finder_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Raise MissingAttributeError on query methodsErnie Miller2012-09-081-0/+1
* Remove ActiveRecord::Base.to_aJon Leighton2012-08-031-1/+1
* Revert "Removing composed_of from ActiveRecord."Rafael Mendonça França2012-07-271-0/+99
* Deprecate ActiveRecord::Base.scoped.Jon Leighton2012-07-271-69/+69
* ActiveRecord::Base.all returns a Relation.Jon Leighton2012-07-271-17/+17
* exists?(false) returns falseEgor Lynko2012-06-251-0/+4
* made dynamic finders alias_attribute awareMaximilian Schneider2012-06-221-0/+5
* Removing composed_of from ActiveRecord.Steve Klabnik2012-06-181-99/+0
* Address ORA-00911 errors because of the heading underscore.Yasuo Honda2012-06-111-1/+1
* Fix that #exists? raises ThrowResult when called with an empty limitedBen Woosley2012-06-101-1/+6
* Add test to column alias in `exists?` SQL.Rafael Mendonça França2012-06-101-0/+6
* stop `to_s`ing method namesAkira Matsuda2012-06-061-1/+1
* quarantine more deprecated stuffJon Leighton2012-05-181-9/+0
* quarantine deprecated testsJon Leighton2012-05-181-333/+2
* Return false for exists? with new records - fixes #6199.Andrew White2012-05-101-0/+1
* Use `take` instead of `first` to avoid unwanted implicit ordering (fixes #6147)Marcelo Silveira2012-05-051-0/+4
* Introducing `take` as a replacement to the old behavior of `first`Marcelo Silveira2012-05-021-2/+24
* Made `first` finder consistent among database engines by adding aMarcelo Silveira2012-05-021-0/+6
* remove deprecated callsJon Leighton2012-04-271-22/+21
* more deprecations manually fixedJon Leighton2012-04-271-20/+15
* find and replace deprecated keysJon Leighton2012-04-271-46/+46
* %s/find(:\(first\|last\|all\), \([^()]*\))/scoped(\2).\1/gcI amongst other th...Jon Leighton2012-04-271-130/+53
* remove calls to find(:first), find(:last) and find(:all)Jon Leighton2012-04-261-1/+1
* remove deprecate #all usageJon Leighton2012-04-261-1/+1
* remove deprecate #calculate callsJon Leighton2012-04-261-6/+0
* fix #scoped deprecationsJon Leighton2012-04-261-5/+5
* remove tests for #with_scope (it's now deprecated)Jon Leighton2012-04-251-14/+0
* fix testsJon Leighton2012-04-131-2/+2
* Add dynamic find_or_create_by_{attribute}! method.Andrew White2012-03-121-0/+22
* fix activerecord query_method regression with offset into FixnumDenis Jean2012-03-121-0/+4
* Fix regression from Rails 3.1Paul McMahon2012-01-271-0/+11
* Deprecate inferred JOINs with includes + SQL snippets.Jon Leighton2012-01-161-3/+6
* Revert "Deprecate implicit eager loading. Closes #950."Jon Leighton2012-01-161-3/+3
* Deprecate implicit eager loading. Closes #950.Jon Leighton2011-12-291-3/+3
* Deprecate set_primary_key in favour of self.primary_key=Jon Leighton2011-11-291-1/+1
* Fixes issue #3483, regarding using a mixture of ranges and discrete values in...Ryan Naughton2011-11-141-1/+1
* Failing test case for issue #3483Gabriel Sobrinho2011-11-141-0/+4
* exclude ORDER BY clause when querying Relation#exists?Akira Matsuda2011-11-091-0/+5
* Add ROWNUM to test first and last to support Oracle.Yasuo Honda2011-09-071-2/+2
* Merge pull request #2485 from akaspick/exists_fixJon Leighton2011-09-071-0/+9
|\
| * fix exists? to return false if passed nil (which may come from a missing URL ...Andrew Kaspick2011-08-101-0/+9
* | Use LIMIT sql word in last when it's possibleDamien Mathieu2011-09-051-1/+18
* | use LIMIT SQL word in first - Closes #2783Damien Mathieu2011-09-051-0/+9
|/
* Raise an ArgumentError if user passing less number of argument in the dynamic...Prem Sichanugrist2011-07-171-0/+8
* formatsAkira Matsuda2011-07-091-5/+5
* fix AR having() not to raise NoMethodError when the given argument does not r...Akira Matsuda2011-07-091-0/+7
* please use ruby -I lib:test path/to/test.rb, or export RUBY_OPTAaron Patterson2011-06-061-1/+1
* Refactor Active Record test connection setup. Please see the RUNNING_UNIT_TES...Jon Leighton2011-06-041-1/+1
* Fix for #371Nick Howard2011-05-081-0/+21
* supporting nil when passed in as an IN clauseAaron Patterson2011-04-291-3/+4