aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/finder_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Find with a list of ids supports limit/offset. Closes #8437.Jeremy Kemper2007-05-251-46/+49
* Include some missing fixtures. Closes #7981.Jeremy Kemper2007-05-251-1/+1
* find_or_create_by_* takes a hash so you can create with more attributes than ...Jeremy Kemper2007-03-141-0/+19
* Post title and body not null. References #6778.Jeremy Kemper2007-01-281-1/+1
* MySQL: SET SQL_AUTO_IS_NULL=0 so 'where id is null' doesn't select the last i...Jeremy Kemper2007-01-281-0/+6
* Pass a range in :conditions to use the SQL BETWEEN operator. Closes #6974.Jeremy Kemper2007-01-101-0/+10
* Ensure dynamic finders are anchored to the beginning of the method name to pr...Michael Koziarski2006-12-271-0/+7
* Support nil and Array in :conditions => { attr => value } hashes. Closes #6548.Jeremy Kemper2006-11-051-2/+14
* Deprecation: count class method should be called with an options hash rather ...Jeremy Kemper2006-09-261-3/+3
* Backed out of new_record? to new? transformation as it would screw up existin...David Heinemeier Hansson2006-09-051-4/+4
* Deprecated ActiveRecord::Base.new_record? in favor of ActiveRecord::Base.new?...David Heinemeier Hansson2006-09-051-4/+4
* has_one supports the :dependent => :delete option which skips the typical cal...Jeremy Kemper2006-08-291-2/+2
* Clashing type columns due to a sloppy join shouldn't wreck single-table inher...Jeremy Kemper2006-08-241-0/+5
* The exists? class method should treat a string argument as an id rather than ...Jeremy Kemper2006-08-031-7/+8
* Added support for conditions on Base.exists? (closes #5689) [josh@joshpeek.com]David Heinemeier Hansson2006-08-031-0/+3
* Rollback [4584], bad test. Reopens #3819.Jeremy Kemper2006-07-081-14/+1
* Don't modify options parameters in-place. Closes #3819.Jeremy Kemper2006-07-081-1/+14
* Added find_or_initialize_by_X which works like find_or_create_by_X but doesn'...Sam Stephenson2006-06-201-0/+15
* Added simple hash conditions to find that'll just convert hash to an AND-base...David Heinemeier Hansson2006-06-031-2/+31
* Mind the order of things.Jeremy Kemper2006-06-011-7/+3
* Records and arrays of records are bound as quoted ids.Jeremy Kemper2006-06-011-0/+33
* Add support for FrontBase (http://www.frontbase.com/) with a new adapter than...Marcel Molina2006-04-271-0/+6
* SQL Server adapter gets some love (closes #4298) [rtomayko@gmail.com]David Heinemeier Hansson2006-03-181-0/+5
* fix test_find_in_association_with_options test, tweak other tests affected by...Rick Olson2006-03-161-1/+1
* Fixed eager loading problems with single-table inheritance [Rick Olson] Added...David Heinemeier Hansson2006-03-051-1/+2
* test_find_or_create_from_two_attributes is a duplicate of test_find_or_create...David Heinemeier Hansson2006-02-191-4/+4
* Add explicit :order in finder tests as postgresql orders results differently ...Marcel Molina2006-01-221-1/+1
* Make dynamic finders honor additional passed in :conditions. Closes #3569.Marcel Molina2006-01-221-1/+14
* Don't raise an exception when there are more keys than there are named bind v...Marcel Molina2006-01-051-16/+0
* r3095@asus: jeremy | 2005-11-15 22:40:51 -0800Jeremy Kemper2005-11-161-1/+1
* Correct handling of complex order clauses with SQL Server limit emulation. C...Jeremy Kemper2005-11-081-0/+10
* Added extension capabilities to has_many and has_and_belongs_to_many proxies ...David Heinemeier Hansson2005-11-041-0/+14
* Fixed SQL Server adapter so it honors options[:conditions] when applying :lim...David Heinemeier Hansson2005-10-281-0/+6
* Fixed handling of nil number columns on Oracle and cleaned up tests for Oracl...David Heinemeier Hansson2005-10-261-12/+6
* Added quoted_true and quoted_false methods to db2_adapter and cleaned up test...David Heinemeier Hansson2005-10-261-1/+1
* r2718@asus: jeremy | 2005-10-23 14:45:30 -0700Jeremy Kemper2005-10-231-1/+1
* Clarify semantics of ActiveRecord::Base#respond_to? Closes #2560.Jeremy Kemper2005-10-221-1/+7
* modified finder test a tiny bit so that it passes on sqlserverTobias Lütke2005-10-161-2/+2
* Raise an exception when invalid options are passed to ActiveRecord::Base.find...Marcel Molina2005-10-061-0/+5
* Quote booleans according the rules defined by the adapterMichael Koziarski2005-10-061-2/+2
* Wrap :conditions in parentheses to prevent problems with OR's #1871Jamis Buck2005-09-241-1/+9
* Added AbstractAdapter#select_value and AbstractAdapter#select_values as conve...David Heinemeier Hansson2005-09-241-0/+13
* Added :select option to find which can specify a different value than the def...David Heinemeier Hansson2005-07-141-0/+4
* Fixed Base.content_columns call for SQL Server adapter #1450 [DeLynn Berry] A...David Heinemeier Hansson2005-07-031-1/+5
* Updated all references to the old find_first and find_all to use the new styl...David Heinemeier Hansson2005-06-261-1/+1
* Fixed Base#find to honor the documentation on how :joins work and make them c...David Heinemeier Hansson2005-06-251-2/+5
* Fixed that calling Model.find([]) returns [] and doesn't throw an exception #...David Heinemeier Hansson2005-06-211-0/+4
* Fix quote_bound_value to not map Strings #1416 [htonl]David Heinemeier Hansson2005-06-161-0/+4
* Allow any Enumerable, not just Array, to work as bind variables #1344 [bitsweat]David Heinemeier Hansson2005-06-161-1/+8
* Don't expect fixtures to be returned in the order they were inserted.Jeremy Kemper2005-06-121-3/+4