mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #23747 from kamipo/add_accidentally_removed_sharp
Add accidentally removed `#` [ci skip]
This commit is contained in:
commit
00b62719b4
1 changed files with 6 additions and 6 deletions
|
@ -5,9 +5,9 @@
|
|||
Example:
|
||||
|
||||
PriceEstimate.where(estimate_of: [Treasure.find(1), Car.find(2)])
|
||||
=> SELECT "price_estimates".* FROM "price_estimates"
|
||||
WHERE (("price_estimates"."estimate_of_type" = 'Treasure' AND "price_estimates"."estimate_of_id" = 1)
|
||||
OR ("price_estimates"."estimate_of_type" = 'Car' AND "price_estimates"."estimate_of_id" = 2))
|
||||
# => SELECT "price_estimates".* FROM "price_estimates"
|
||||
WHERE (("price_estimates"."estimate_of_type" = 'Treasure' AND "price_estimates"."estimate_of_id" = 1)
|
||||
OR ("price_estimates"."estimate_of_type" = 'Car' AND "price_estimates"."estimate_of_id" = 2))
|
||||
|
||||
*Philippe Huibonhoa*
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
|
||||
*Bogdan Gusiev*, *Jon Hinson*
|
||||
|
||||
* Rework `ActiveRecord::Relation#last`
|
||||
* Rework `ActiveRecord::Relation#last`.
|
||||
|
||||
1. Never perform additional SQL on loaded relation
|
||||
2. Use SQL reverse order instead of loading relation if relation doesn't have limit
|
||||
|
@ -46,7 +46,7 @@
|
|||
|
||||
* Allow `joins` to be unscoped.
|
||||
|
||||
Closes #13775.
|
||||
Fixes #13775.
|
||||
|
||||
*Takashi Kokubun*
|
||||
|
||||
|
|
Loading…
Reference in a new issue