diff options
author | Sergei Petrunia <sergey@mariadb.com> | 2022-12-08 21:24:31 +0300 |
---|---|---|
committer | Sergei Petrunia <sergey@mariadb.com> | 2022-12-08 21:24:31 +0300 |
commit | cb69a8123e140aa3d2b94513a471161d693059da (patch) | |
tree | 988bbc65918450a0cdaad6cb16ef51c986350c5b /mysql-test/main/opt_trace_security.result | |
parent | 9eba044b9710bbdd8195e887cfdd4d62233942ca (diff) | |
download | mariadb-git-bb-10.11-tmp.tar.gz |
MDEV-21095: Make Optimizer Trace support Index Condition Pushdownbb-10.11-tmp
Fixes over previous patches: do tracing of attached conditions
close to where we generate them.
Fix the tracing code to print the right conditions.
Diffstat (limited to 'mysql-test/main/opt_trace_security.result')
-rw-r--r-- | mysql-test/main/opt_trace_security.result | 54 |
1 files changed, 22 insertions, 32 deletions
diff --git a/mysql-test/main/opt_trace_security.result b/mysql-test/main/opt_trace_security.result index d5dfba14082..4ed619ca7fd 100644 --- a/mysql-test/main/opt_trace_security.result +++ b/mysql-test/main/opt_trace_security.result @@ -123,23 +123,18 @@ select * from db1.t1 { "best_join_order": ["t1"] }, { - "make_join_readinfo": [ - { - "table": "t1", - "index_condition": null - } - ] - } - ] - } - }, - { - "attaching_conditions_to_tables": { - "attached_conditions_computation": [], - "attached_conditions_summary": [ + "attaching_conditions_to_tables": { + "attached_conditions_computation": [], + "attached_conditions_summary": [ + { + "table": "t1", + "attached_condition": null + } + ] + } + }, { - "table": "t1", - "attached_condition": null + "make_join_readinfo": [] } ] } @@ -260,23 +255,18 @@ select * from db1.v1 { "best_join_order": ["t1"] }, { - "make_join_readinfo": [ - { - "table": "t1", - "index_condition": null - } - ] - } - ] - } - }, - { - "attaching_conditions_to_tables": { - "attached_conditions_computation": [], - "attached_conditions_summary": [ + "attaching_conditions_to_tables": { + "attached_conditions_computation": [], + "attached_conditions_summary": [ + { + "table": "t1", + "attached_condition": null + } + ] + } + }, { - "table": "t1", - "attached_condition": null + "make_join_readinfo": [] } ] } |