From 9d4a025be2bb335de7ae2e12a6132d284cb97e21 Mon Sep 17 00:00:00 2001 From: eileencodes Date: Wed, 24 Feb 2021 09:04:13 -0500 Subject: [PATCH] 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 --- guides/source/active_record_multiple_databases.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guides/source/active_record_multiple_databases.md b/guides/source/active_record_multiple_databases.md index d97901e648..e593ff2354 100644 --- a/guides/source/active_record_multiple_databases.md +++ b/guides/source/active_record_multiple_databases.md @@ -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