aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/left_outer_join_association_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* systematic revision of =~ usage in ARXavier Noria2016-07-231-5/+5
| | | | | Where appropriatei, prefer the more concise Regexp#match?, String#include?, String#start_with?, or String#end_with?
* Allow Oracle bind parameter syntax `:a1`Yasuo Honda2016-06-081-1/+1
|
* Merge pull request #22125 from k0kubun/left_joinsSean Griffin2015-10-301-0/+5
|\ | | | | Alias left_joins to left_outer_joins
| * Alias left_joins to left_outer_joinsTakashi Kokubun2015-10-311-0/+5
| |
* | Fix test failures caused by #12071Sean Griffin2015-10-301-10/+10
|/ | | | | | This assumes only one query was ever executed, but it appears to sometimes be loading schema information. We can just look at the array of queries, rather than the "first" one that was run
* added ActiveRecord::Relation#left_outer_joinsFlorian Thomas2015-05-191-0/+74
Example: User.left_outer_joins(:posts) => SELECT "users".* FROM "users" LEFT OUTER JOIN "posts" ON "posts"."user_id" = "users"."id"