aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Collapse)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
| | | | [#5152 state:reslved]
* adding a reader for loaded, initializing @loaded to falseAaron Patterson2010-07-202-7/+4
|
* reusing the time instrumentation from the instrumenter rather than ↵Aaron Patterson2010-07-191-4/+7
| | | | Benchmark. [#5098 state:open]
* Minor performance improvment in notifications/fanout and ↵Daniel Guettler2010-07-191-0/+2
| | | | active_record/log_subscriber [#5098 state:open]
* 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 ↵Subba Rao Pasupuleti2010-07-181-1/+3
| | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* 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 ↵José Valim2010-07-181-0/+6
| | | | starts avoiding reference loops.
* 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
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Revert "Style fixes"Pratik Naik2010-07-152-21/+21
| | | | This reverts commit 3c300b31219f2af3ecd46ef22b04e5c5548db899.
* 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 ↵Aaron Patterson2010-07-141-4/+6
| | | | conditionals
* 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 ↵Xavier Noria2010-07-141-4/+9
| | | | they are wrapped in a transaction, and adds code comments explaining why
* Set destroyed=true in opt locking's destroy [#5058 state:resolved]Jacob Lewallen2010-07-141-0/+1
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* count method should not take options if it is operated on has_many ↵Neeraj Singh2010-07-131-2/+5
| | | | | | | | association which has finder_sql or counter_sql [#2395 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* update_attributes and update_attributes! are now wrapped in a transactionNeeraj Singh2010-07-131-4/+8
| | | | | | [#922 state:resovled] Signed-off-by: José Valim <jose.valim@gmail.com>
* 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 ↵Vitalii Khustochka2010-07-131-1/+1
| | | | | | | | | | | | default_scope ordering in the named scope [#5093 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* | string IDs are now quoted correctly [#5064 state:resolved]Will St. Clair + Neeraj Singh2010-07-131-1/+1
| | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* | enable AS::JSON.encode to encode AR::Relation by providing `as_json` methodMislav Marohnić2010-07-131-1/+3
| | | | | | | | | | | | [#5073 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* | 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 ↵Neeraj Singh2010-07-132-9/+8
| | | | | | | | | | | | | | | | callbacks - updates updated_at/on along with attribute if attribute is provided - marks udpated_at/on and attribute as NOT changed [#2520 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* | our method is modifying the original array, so refactor to use destructive ↵Aaron Patterson2010-07-121-5/+4
| | | | | | | | methods
* | 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
| |