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:
eileencodes 2021-02-24 09:04:13 -05:00
parent 1e04c04ecb
commit 9d4a025be2
No known key found for this signature in database
GPG Key ID: BA5C575120BBE8DF

@ -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