Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | reorder removed in favor of except(:order).order | Santiago Pastorino | 2010-10-11 | 1 | -6/+0 |
| | |||||
* | @klass also uses DynamicFinderMatch, so no need for it on the relation | Aaron Patterson | 2010-09-27 | 1 | -0/+5 |
| | |||||
* | expanding the test to include both type of order declaration | Neeraj Singh | 2010-09-18 | 1 | -6/+22 |
| | | | | | | | | | while declaring default_scope Also added test for unscoped using block style with four different combinations Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | removing nonsensical tests, limit now actually adds a limit | Aaron Patterson | 2010-09-15 | 1 | -4/+0 |
| | |||||
* | added a test for relation which checks intersection between a relation and ↵ | kane | 2010-09-10 | 1 | -0/+6 |
| | | | | | | an array works in both directions Signed-off-by: Mikel Lindsaar <raasdnil@gmail.com> | ||||
* | Add tests for Relation#only. | Emilio Tagua | 2010-09-09 | 1 | -0/+11 |
| | |||||
* | select should raise error when no block or no parameter is passed | Aaron Patterson | 2010-09-07 | 1 | -0/+4 |
| | |||||
* | order should always be concatenated. | Neeraj Singh | 2010-09-05 | 1 | -0/+18 |
| | | | | | | | | | | | | | | | | | | | | | | order that is declared first has highest priority in all cases. Here are some examples. Car.order('name desc').find(:first, :order => 'id').name Car.named_scope_with_order.named_scope_with_another_order Car.order('id DESC').scoping do Car.find(:first, :order => 'id asc') end No special treatment to with_scope or scoping. Also note that if default_scope declares an order then the order declared in default_scope has the highest priority unless with_exclusive_scope is used. Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Fix test: this should return 0 not 7, since Arel was ignoring select clause ↵ | Emilio Tagua | 2010-09-01 | 1 | -1/+1 |
| | | | | | | and now it's fixed. Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | code gardening: we have assert_(nil|blank|present), more concise, with ↵ | Xavier Noria | 2010-08-17 | 1 | -2/+2 |
| | | | | better default failure messages - let's use them | ||||
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵ | Santiago Pastorino | 2010-08-14 | 1 | -2/+2 |
| | | | | 's/[ \t]*$//' -i {} \;) | ||||
* | Ensure we can nest include calls [#5285 state:resolved] | Neeraj Singh | 2010-08-12 | 1 | -1/+11 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | test to ensure that respond_to? delegates to arel | Aaron Patterson | 2010-08-06 | 1 | -0/+19 |
| | |||||
* | sorry AR, my privates are none of your business | Aaron Patterson | 2010-08-06 | 1 | -7/+0 |
| | |||||
* | reverting where() functionality, adding a test | Aaron Patterson | 2010-07-30 | 1 | -0/+5 |
| | |||||
* | removing unused models from tests | Subba Rao Pasupuleti | 2010-07-21 | 1 | -1/+0 |
| | | | | | | [#5153 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Add scoping and unscoped as the syntax to replace the old with_scope and ↵ | José Valim | 2010-06-29 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | with_exclusive_scope. A few examples: * with_scope now should be scoping: Before: Comment.with_scope(:find => { :conditions => { :post_id => 1 } }) do Comment.first #=> SELECT * FROM comments WHERE post_id = 1 end After: Comment.where(:post_id => 1).scoping do Comment.first #=> SELECT * FROM comments WHERE post_id = 1 end * with_exclusive_scope now should be unscoped: class Post < ActiveRecord::Base default_scope :published => true end Post.all #=> SELECT * FROM posts WHERE published = true Before: Post.with_exclusive_scope do Post.all #=> SELECT * FROM posts end After: Post.unscoped do Post.all #=> SELECT * FROM posts end Notice you can also use unscoped without a block and it will return an anonymous scope with default_scope values: Post.unscoped.all #=> SELECT * FROM posts | ||||
* | blocks removed from all the ActiveRelation query_methods, extend method ↵ | Santiago Pastorino | 2010-06-26 | 1 | -1/+1 |
| | | | | | | added instead Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | reorder method added to ActiveRelation | Santiago Pastorino | 2010-06-26 | 1 | -0/+6 |
| | | | | | | [#4972 state:committed] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Test for concatenated orders added | Santiago Pastorino | 2010-06-26 | 1 | -0/+6 |
| | | | | | | [#4972] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Support for multiple selects added | Neeraj Singh and Santiago Pastorino | 2010-06-25 | 1 | -0/+6 |
| | | | | [#4841 state:committed] | ||||
* | Add tests for relation count. Fix other tests that were conceptually wrong. | Emilio Tagua | 2010-06-24 | 1 | -1/+5 |
| | | | | | | [#4882 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | adding fix for to_xml for ActiveRecord relation object | Neeraj Singh | 2010-06-23 | 1 | -0/+5 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | ActiveRecord's relation object should respond to to_json and to_yaml | Neeraj Singh | 2010-06-23 | 1 | -0/+10 |
| | | | | | | [#4547 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | test for #4917 | Neeraj Singh | 2010-06-22 | 1 | -0/+7 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Fix order method to accept relation attributes. | Emilio Tagua | 2010-06-22 | 1 | -2/+6 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | This test shouldn't rely on the order of the data returned by select | Santiago Pastorino | 2010-06-07 | 1 | -1/+1 |
| | | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | ||||
* | Special treatement for Relation#select { with block } | Pratik Naik | 2010-06-02 | 1 | -0/+5 |
| | |||||
* | Final iteration of use better testing methods | Neeraj Singh | 2010-05-19 | 1 | -3/+3 |
| | | | | | | [#4652 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Add Relation extensions | Pratik Naik | 2010-04-02 | 1 | -0/+16 |
| | |||||
* | Relation should respond to class methods | Pratik Naik | 2010-01-22 | 1 | -0/+5 |
| | |||||
* | Handle invalid query IN() generated when a blank array is supplied in hash ↵ | Pratik Naik | 2010-01-18 | 1 | -0/+5 |
| | | | | conditions | ||||
* | Dont check for class equaity when merging relations | Pratik Naik | 2010-01-18 | 1 | -4/+0 |
| | |||||
* | Make Relation#reload force load the records immediately | Pratik Naik | 2010-01-17 | 1 | -3/+5 |
| | |||||
* | Add Relation#create_with to explictily specify create scope | Pratik Naik | 2010-01-04 | 1 | -0/+8 |
| | |||||
* | Relation#merge and Relation#except should respect locks | Pratik Naik | 2010-01-03 | 1 | -0/+5 |
| | |||||
* | Add Relation#except | Pratik Naik | 2010-01-03 | 1 | -0/+12 |
| | |||||
* | Give preference to the second relation's order when merging | Pratik Naik | 2010-01-03 | 1 | -1/+0 |
| | |||||
* | Add Relation#includes to be an equivalent of current finder option :include | Pratik Naik | 2010-01-03 | 1 | -1/+24 |
| | |||||
* | Implement Relation#create and Relation#create! | Pratik Naik | 2010-01-03 | 1 | -0/+24 |
| | |||||
* | Implement Relation#new | Pratik Naik | 2010-01-03 | 1 | -0/+16 |
| | |||||
* | Relation#many? shoud load the records if there's a LIMIT | Pratik Naik | 2009-12-30 | 1 | -0/+6 |
| | |||||
* | Add Relation#any? and Relation#many? | Pratik Naik | 2009-12-30 | 1 | -0/+26 |
| | |||||
* | Fix the count test for postgres | Pratik Naik | 2009-12-30 | 1 | -1/+1 |
| | |||||
* | Relation#count should look for projections in chained relations and perform ↵ | Emilio Tagua | 2009-12-30 | 1 | -1/+11 |
| | | | | | | the count on the given column Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Relation#respond_to? should take second argument for responding to private ↵ | Pratik Naik | 2009-12-29 | 1 | -0/+7 |
| | | | | methods | ||||
* | Make sure Relation responds to dynamic finder methods | Pratik Naik | 2009-12-29 | 1 | -1/+9 |
| | |||||
* | Add Relation#size and Relation#empty? | Pratik Naik | 2009-12-29 | 1 | -3/+15 |
| | |||||
* | Add Relation#delete_all | Pratik Naik | 2009-12-29 | 1 | -0/+20 |
| | |||||
* | Add Relation#count | Pratik Naik | 2009-12-28 | 1 | -0/+30 |
| |