aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
Commit message (Expand)AuthorAgeFilesLines
* applied patch to fix the associations with blocks in modules bug from an old ...Adeh DeSandies2008-09-201-0/+15
* I18n: Introduce I18n.load_path in favor of I18n.load_translations and change ...Sven Fuchs2008-09-201-1/+5
* Fixed an error triggered by a reload followed by a foreign key assignment.Nathaniel Talbott2008-09-201-0/+8
* When counting grouped records the target should be loaded to return a valid g...miloops2008-09-151-0/+2
* stop AR's debug.log filling with warnings about not being able to load fixtur...Frederick Cheung2008-09-141-0/+14
* Deal with MySQL's quirky handling of defaults and blob/text columnsFrederick Cheung2008-09-142-1/+36
* Multiparameter attributes skip time zone conversion for time-only columns [#1...gbuesing2008-09-141-0/+18
* Base.skip_time_zone_conversion_for_attributes uses class_inheritable_accessor...miloops2008-09-141-0/+9
* Allow for the dirty tracking to work with the aliased name of aliased attribu...Rich Cavanaugh2008-09-132-0/+14
* Support for updating a belongs to association from the foreign key (without s...Jon Leighton2008-09-132-0/+25
* Use select and change test so new tests can work on postgres.miloops2008-09-123-5/+5
* Improve test coverage when using the group option in find, has_many or has_an...miloops2008-09-116-2/+30
* Fix ActiveRecord::Base.quote_bound_value for ActiveSupper::Multibyte::Chars v...Manfred Stienstra2008-09-112-2/+35
* Fixes validates_uniquness_of problem with case insensitive string containing ...wmoxam2008-09-111-0/+7
* Add missing assert_deprecated calls to prevent spam during test runsMichael Koziarski2008-09-111-2/+6
* add activerecord tests to make sure the deprecated %s and %d interpolation sy...Sven Fuchs2008-09-101-1/+15
* add activerecord tests for deprecation of %s and %d in error messages (and tr...Sven Fuchs2008-09-101-0/+12
* change activerecord validation tests to not use the deprecated interpolation ...Sven Fuchs2008-09-101-29/+29
* fixed association preloading to use = instead of IN when there's only one recordrsl2008-09-101-1/+1
* Revert "Add :accessible option to Associations for allowing mass assignments ...Pratik Naik2008-09-103-115/+1
* Added :constructor and :converter options to composed_of and deprecated the c...Rob Anderton2008-09-103-2/+64
* Support :limit on update_all so that has_many with :limit can be safely updatedTarmo Tänav2008-09-102-4/+16
* Fixed test_find_last_by_one_attribute_caches_dynamic_finder for postgresql 8.3Tarmo Tänav2008-09-101-1/+1
* Added find_last_by dynamic finder [status:committed #762]miloops2008-09-091-4/+36
* Revert "Revert "Raise UnknownAttributeError when unknown attributes are suppl...Jeremy Kemper2008-09-081-0/+8
* Revert "Raise UnknownAttributeError when unknown attributes are supplied via ...Jeremy Kemper2008-09-061-8/+0
* Rescue spurious failures in case dummy postgresql user or schema already existsJeremy Kemper2008-09-041-2/+2
* Default connection allow_concurrency to false (for PostgreSQL)Nick Sieger2008-09-042-0/+4
* Deprecate verification_timeout and verify before resetNick Sieger2008-09-042-2/+2
* Fix transaction exception testJeremy Kemper2008-09-041-0/+1
* Database connections are now pooled, one pool per #establish_connection call.Jeremy Kemper2008-09-025-16/+116
|\
| * translates when a message symbol has been set on builtin validationsIain Hecker2008-08-311-0/+33
| * Fix tests that assumed implicit order by idJeremy Kemper2008-08-301-2/+2
| * Performance: Better query for ASSOCIATION_ids. Select only ids if the associa...miloops2008-08-303-16/+68
| * Make NamedScope#size behave identically to AssociationCollection#size. [#933 ...Tom Stuart2008-08-291-0/+15
* | Make clear_active_connections! also return stale connections back to the poolNick Sieger2008-08-294-96/+87
* | Remove CachedConnectionPerThread per-thread pooling mechanism in favor of a f...Nick Sieger2008-08-293-0/+7
* | Deprecate allow_concurrency and make it have no effectNick Sieger2008-08-294-55/+7
* | Fix typo: was using brackets instead of parens. Must need more sleep.Nick Sieger2008-08-291-0/+10
* | Fix checkin method, add a couple more testsNick Sieger2008-08-291-4/+34
* | Nearing the finish line. Initial fixed-size connection pool implemented, more...Nick Sieger2008-08-291-0/+36
* | Introduce synchronization around connection pool accessNick2008-08-291-0/+4
* | Rename defined_connections to connection_poolsNick2008-08-291-1/+1
* | Initial conversion to connection poolNick2008-08-291-24/+15
|/
* Make case insensitive validates_uniqueness_of use unicode aware downcase method.Eugene Pimenov2008-08-291-0/+12
* Fix parentheses warningsMichael Koziarski2008-08-291-1/+1
* Fix NamedScope regex so methods containing "an" get delegated to proxy_found....Jan De Poorter2008-08-291-0/+4
* Merge scoped :joins together instead of overwriting them. May expose scoping ...Andrew White2008-08-281-2/+79
* Refactored AssociationCollection#count for uniformity and Ruby 1.8.7 support.Ernie Miller2008-08-281-0/+7
* Implement count limit/offset support for has_many associationsTarmo Tänav2008-08-271-0/+6