Fix 01429_join_on_error_messages

This commit is contained in:
vdimir 2023-03-10 19:56:53 +00:00
parent 800523b19b
commit 3e7510a584
No known key found for this signature in database
GPG Key ID: 6EE4CE2BEDC51862

View File

@ -15,7 +15,7 @@ SET join_algorithm = 'partial_merge';
SELECT 1 FROM (select 1 a) A JOIN (select 1 b, 1 c) B ON a = b OR a = c; -- { serverError 48 }
-- works for a = b OR a = b because of equivalent disjunct optimization
SET join_algorithm = 'auto';
SET join_algorithm = 'grace_hash';
SELECT 1 FROM (select 1 a) A JOIN (select 1 b, 1 c) B ON a = b OR a = c; -- { serverError 48 }
-- works for a = b OR a = b because of equivalent disjunct optimization