increase max_bytes_in_join

This commit is contained in:
lgbo-ustc 2023-06-26 20:42:21 +08:00
parent 179a7ce202
commit aab86da4e9

View File

@ -30,7 +30,7 @@ SELECT 'skipped';
{% for join_algorithm in ['full_sorting_merge', 'grace_hash'] -%}
SET max_bytes_in_join = '{% if join_algorithm == 'grace_hash' %}1M{% else %}0{% endif %}';
SET max_bytes_in_join = '{% if join_algorithm == 'grace_hash' %}16M{% else %}0{% endif %}';
SELECT '-- {{ join_algorithm }} --';
SET join_algorithm = '{{ join_algorithm }}';