aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
Commit message (Collapse)AuthorAgeFilesLines
* Allowed passing arrays-of-strings to :join everywhere. Merge duplicate join ↵Pivotal Labs2008-09-243-0/+47
| | | | | | | strings to avoid table aliasing problems. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1077 state:committed]
* Make AssociationCollection start transactions in the correct database.Hongli Lai (Phusion)2008-09-233-0/+27
| | | | | | | | | | AssociationCollection now starts transactions by calling AssociationCollection#transaction instead of @owner.transaction or @reflection.klass.transaction. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1081 state:committed]
* Merge branch 'patches' into multibyteMichael Koziarski2008-09-223-1/+40
|\
| * Association#first and last should not load the association if not needed. ↵Jan De Poorter2008-09-222-1/+14
| | | | | | | | | | | | [#1091 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * Add Model#delete instance method, similar to Model.delete class method. ↵Hongli Lai (Phusion2008-09-211-0/+26
| | | | | | | | | | | | [#1086 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* | Change all calls to String#chars to String#mb_chars.Manfred Stienstra2008-09-212-6/+6
| |
* | Fix a test that assumes .mb_chars to always return an instance of the ↵Manfred Stienstra2008-09-211-7/+23
| | | | | | | | proxy_class.
* | Change all calls to String#chars to String#mb_chars. Remove a exception for ↵Manfred Stienstra2008-09-211-2/+2
|/ | | | Ruby <= 1.9.
* applied patch to fix the associations with blocks in modules bug from an old ↵Adeh DeSandies2008-09-201-0/+15
| | | | trac ticket
* I18n: Introduce I18n.load_path in favor of I18n.load_translations and change ↵Sven Fuchs2008-09-201-1/+5
| | | | | | Simple backend to load translations lazily. [#1048 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Fixed an error triggered by a reload followed by a foreign key assignment.Nathaniel Talbott2008-09-201-0/+8
| | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
* When counting grouped records the target should be loaded to return a valid ↵miloops2008-09-151-0/+2
| | | | | | | | | groups count result. Without this change count_records will group for the count in the query and return erroneous results. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#937 state:committed]
* stop AR's debug.log filling with warnings about not being able to load ↵Frederick Cheung2008-09-141-0/+14
| | | | | | | | fixture classes [#1045 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Deal with MySQL's quirky handling of defaults and blob/text columnsFrederick Cheung2008-09-142-1/+36
| | | | | | [#1043 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Multiparameter attributes skip time zone conversion for time-only columns ↵gbuesing2008-09-141-0/+18
| | | | [#1030 state:resolved]
* Base.skip_time_zone_conversion_for_attributes uses ↵miloops2008-09-141-0/+9
| | | | class_inheritable_accessor, so that subclasses don't overwrite Base [#346 state:resolved]
* Allow for the dirty tracking to work with the aliased name of aliased ↵Rich Cavanaugh2008-09-132-0/+14
| | | | | | | attributes. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#812 state:committed]
* Support for updating a belongs to association from the foreign key (without ↵Jon Leighton2008-09-132-0/+25
| | | | | | | saving and reloading the record) Signed-off-by: Michael Koziarski <michael@koziarski.com> [#142 state:committed]
* Use select and change test so new tests can work on postgres.miloops2008-09-123-5/+5
| | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Improve test coverage when using the group option in find, has_many or ↵miloops2008-09-116-2/+30
| | | | | | has_and_belongs_to_many. Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Fix ActiveRecord::Base.quote_bound_value for ActiveSupper::Multibyte::Chars ↵Manfred Stienstra2008-09-112-2/+35
| | | | | | | | | | values. - Adds String#acts_like_string? - Adds Chars#acts_like_string? Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1029 state:committed]
* Fixes validates_uniquness_of problem with case insensitive string containing ↵wmoxam2008-09-111-0/+7
| | | | | | newline characters Signed-off-by: Michael Koziarski <michael@koziarski.com>
* 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 ↵Sven Fuchs2008-09-101-1/+15
| | | | | | | | syntax still works [#1016 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* add activerecord tests for deprecation of %s and %d in error messages (and ↵Sven Fuchs2008-09-101-0/+12
| | | | | | translations in general) Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* change activerecord validation tests to not use the deprecated interpolation ↵Sven Fuchs2008-09-101-29/+29
| | | | | | syntax any more Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* fixed association preloading to use = instead of IN when there's only one recordrsl2008-09-101-1/+1
| | | | | | [#1013 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Revert "Add :accessible option to Associations for allowing mass assignments ↵Pratik Naik2008-09-103-115/+1
| | | | | | | | | | | | using hash. [#474 state:resolved]" This reverts commit e0750d6a5c7f621e4ca12205137c0b135cab444a. Conflicts: activerecord/CHANGELOG activerecord/lib/active_record/associations.rb activerecord/lib/active_record/associations/association_collection.rb
* Added :constructor and :converter options to composed_of and deprecated the ↵Rob Anderton2008-09-103-2/+64
| | | | | | conversion block Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Support :limit on update_all so that has_many with :limit can be safely updatedTarmo Tänav2008-09-102-4/+16
| | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Fixed test_find_last_by_one_attribute_caches_dynamic_finder for postgresql 8.3Tarmo Tänav2008-09-101-1/+1
| | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Added find_last_by dynamic finder [status:committed #762]miloops2008-09-091-4/+36
| | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Revert "Revert "Raise UnknownAttributeError when unknown attributes are ↵Jeremy Kemper2008-09-081-0/+8
| | | | | | supplied via mass assignment"" This reverts commit 41efd73887c00ffd228b05d9346ec47a1f3759b9.
* Revert "Raise UnknownAttributeError when unknown attributes are supplied via ↵Jeremy Kemper2008-09-061-8/+0
| | | | | | mass assignment" This reverts commit 108db00aa90fe266564483ab301cf0669cae600f.
* 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
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Deprecate verification_timeout and verify before resetNick Sieger2008-09-042-2/+2
| | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
* 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
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pools start out empty and grow as necessary to a maximum size (default is 5, configure size with key 'pool' in your database configuration). If no connections are available, a thread will wait up to a 'wait_timeout' time (default is 5 seconds). Connections are verified and reset when checked out from the pool (usually upon first access to ActiveRecord::Base.connection), and returned back to the pool after each request. If you would like to use connection pools outside of ActionPack, there is an ActiveRecord::Base.connection_pool method that gives you access to the pool, and you can manually checkout/checkin connections, or supply a block to ActiveRecord::Base.connection_pool.with_connection which takes care of the checkout/checkin for you. [#936 state:resolved]
| * translates when a message symbol has been set on builtin validationsIain Hecker2008-08-311-0/+33
| | | | | | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
| * Fix tests that assumed implicit order by idJeremy Kemper2008-08-301-2/+2
| |
| * Performance: Better query for ASSOCIATION_ids. Select only ids if the ↵miloops2008-08-303-16/+68
| | | | | | | | | | | | association hasn't been loaded. Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
| * Make NamedScope#size behave identically to AssociationCollection#size. [#933 ↵Tom Stuart2008-08-291-0/+15
| | | | | | | | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* | Make clear_active_connections! also return stale connections back to the poolNick Sieger2008-08-294-96/+87
| | | | | | | | - also clean up some cruft remaining from per-thread connection cache
* | Remove CachedConnectionPerThread per-thread pooling mechanism in favor of a ↵Nick Sieger2008-08-293-0/+7
| | | | | | | | fixed pool with default maximum of 5 connections
* | 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, ↵Nick Sieger2008-08-291-0/+36
| | | | | | | | more docs
* | Introduce synchronization around connection pool accessNick2008-08-291-0/+4
| | | | | | | | | | | | - use new active support Module#synchronize - allow_concurrency now switches between a null monitor and a regular monitor (defaulting to null monitor to avoid overhead)