You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT * FROM users INNER JOIN orders
ON order.not_sharding_key = users.not_sharding_key;
In this case, sending the query to all shards as-is produces the wrong result since values from shard A are not joined to values in shard B. We need to remove the join, get all rows, and re-apply the join in the pooler.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Description
In this case, sending the query to all shards as-is produces the wrong result since values from shard A are not joined to values in shard B. We need to remove the join, get all rows, and re-apply the join in the pooler.
The text was updated successfully, but these errors were encountered: