aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
* id is a public methodSantiago Pastorino2010-07-211-2/+2
* Ensure that primary_keys of HABTM records is not double quotedNeeraj Singh2010-07-201-2/+2
* adding a reader for loaded, initializing @loaded to falseAaron Patterson2010-07-202-7/+4
* reusing the time instrumentation from the instrumenter rather than Benchmark....Aaron Patterson2010-07-191-4/+7
* Minor performance improvment in notifications/fanout and active_record/log_su...Daniel Guettler2010-07-191-0/+2
* avoid const lookup. we know what these constants are in advanceAaron Patterson2010-07-191-3/+3
* Added missing require of remove_methodŁukasz Strzałkowski2010-07-191-0/+1
* Make use of redefine_method, removed some more redefining warningsŁukasz Strzałkowski2010-07-193-29/+14
* Removed warnings about method redefiningŁukasz Strzałkowski2010-07-191-9/+24
* Removed warnings when a variable is shadowedŁukasz Strzałkowski2010-07-192-5/+5
* save on parent should not cascade to child unless child changed [#3353 state:...Subba Rao Pasupuleti2010-07-181-1/+3
* Avoid uneeded queries in session stores if sid is not given.José Valim2010-07-181-1/+0
* Add console hook to force ActiveRecord::Base to be loaded when console starts...José Valim2010-07-181-0/+6
* unfactoring clear_stale_cached_connections!Aaron Patterson2010-07-161-16/+7
* only test for existence of +pool+ onceAaron Patterson2010-07-161-2/+4
* use an attr_reader for performanceAaron Patterson2010-07-161-4/+2
* JoinDependency#graft does not properly set parent join [#5124 state:resolved]David Genord II2010-07-161-1/+1
* Revert "Style fixes"Pratik Naik2010-07-152-21/+21
* clean up ||= with an initialized variable and attr_readerAaron Patterson2010-07-141-5/+2
* Style fixeswycats2010-07-142-21/+21
* primary_key_name already checks for the model_classAaron Patterson2010-07-141-2/+2
* use array intersection for dry / faster codeAaron Patterson2010-07-141-3/+2
* remove useless ternary in PostgreSQL adapterAaron Patterson2010-07-141-1/+1
* PostgreSQLAdapter#query string interpolation calls to_s for usAaron Patterson2010-07-141-1/+1
* PostgreSQLAdapter#query bail early if there is no column and dry up our condi...Aaron Patterson2010-07-141-4/+6
* Let's initialize instance variables in the postgres adapter.Aaron Patterson2010-07-141-0/+3
* Remove unintentional API changes. [#1108]Pratik Naik2010-07-142-9/+8
* Style fixesPratik Naik2010-07-142-21/+21
* revises the rdoc of update_attributes and update_attributes! to document they...Xavier Noria2010-07-141-4/+9
* Set destroyed=true in opt locking's destroy [#5058 state:resolved]Jacob Lewallen2010-07-141-0/+1
* count method should not take options if it is operated on has_many associatio...Neeraj Singh2010-07-131-2/+5
* update_attributes and update_attributes! are now wrapped in a transactionNeeraj Singh2010-07-131-4/+8
* reducing range comparisons when converting types to sqlAaron Patterson2010-07-131-3/+4
* only loop through all rows and columns once in the postgres adapterAaron Patterson2010-07-131-23/+23
* use constants instead of magic numbers. meowAaron Patterson2010-07-131-1/+3
* Merge remote branch 'docrails/master'Xavier Noria2010-07-134-4/+4
|\
| * Fixed many references to the old config/environment.rb and Rails::InitializerBenjamin Quorning2010-07-134-4/+4
| * revises recent commit related to :uniq => trueXavier Noria2010-07-101-1/+1
| * expanding on :uniq option in has_manyNeeraj Singh2010-07-091-1/+1
* | Added reorder delegation for ActiveRecord::Base(to be able to overwrite the d...Vitalii Khustochka2010-07-131-1/+1
* | string IDs are now quoted correctly [#5064 state:resolved]Will St. Clair + Neeraj Singh2010-07-131-1/+1
* | enable AS::JSON.encode to encode AR::Relation by providing `as_json` methodMislav Marohnić2010-07-131-1/+3
* | Tidying up a bit, so update_attribute is not called twice on touch.José Valim2010-07-132-25/+17
* | with this fix touch method - does not call validations - doest not call callb...Neeraj Singh2010-07-132-9/+8
* | our method is modifying the original array, so refactor to use destructive me...Aaron Patterson2010-07-121-5/+4
* | PostgreSQLAdapter#select_raw removing dead codeAaron Patterson2010-07-121-3/+0
* | PostgreSQLAdapter#select_raw use each_with_index to avoid multiple array lookupsAaron Patterson2010-07-121-5/+5
* | PostgreSQLAdapter#select_raw fields and results are empty even if ntuples is 0Aaron Patterson2010-07-121-25/+21
* | refactor PostgreSQLAdapter#result_as_array to create fewer Range objectsAaron Patterson2010-07-121-3/+3
* | cleaning up PostgreSQLAdapter#selectAaron Patterson2010-07-121-8/+2