mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix documentation for joins across clusters
We weren't able to get our gem for splitting across clusters into Rails for 6.1. We're hoping to have that work completed for 7.0 but I should have never promised in the docs to get it done by a specific time. Ref #41537
This commit is contained in:
parent
1e04c04ecb
commit
9d4a025be2
1 changed files with 3 additions and 3 deletions
|
@ -447,9 +447,9 @@ handles outside of Rails.
|
|||
|
||||
### Joining Across Databases
|
||||
|
||||
Applications cannot join across databases. Rails 6.1 will support using `has_many`
|
||||
relationships and creating 2 queries instead of joining, but Rails 6.0 will require
|
||||
you to split the joins into 2 selects manually.
|
||||
Applications cannot join across databases. At the moment applications will need to
|
||||
manually write two selects and split the joins themselves. In a future version Rails
|
||||
will split the joins for you.
|
||||
|
||||
### Schema Cache
|
||||
|
||||
|
|
Loading…
Reference in a new issue