summaryrefslogtreecommitdiff
path: root/mysql-test/main/opt_trace_security.result
diff options
context:
space:
mode:
authorRex <rex.johnston@mariadb.com>2022-12-02 16:46:54 +1200
committerSergei Petrunia <sergey@mariadb.com>2023-02-03 14:28:08 +0300
commit07f21cfb146f7dab3c999fc2dee47b7e7f3b459d (patch)
treef9dfbb4d95f48613bf1a02a295a010ca3429861f /mysql-test/main/opt_trace_security.result
parentdba78f3c32274a5fac29250416568998a65c7622 (diff)
downloadmariadb-git-07f21cfb146f7dab3c999fc2dee47b7e7f3b459d.tar.gz
MDEV-21092,MDEV-21095,MDEV-29997: Optimizer Trace for index condition pushdown, partition pruning, exists-to-in
Add Optimizer Tracing for: - Index Condition Pushdown - Partition Pruning - Exists-to-IN optimization
Diffstat (limited to 'mysql-test/main/opt_trace_security.result')
-rw-r--r--mysql-test/main/opt_trace_security.result52
1 files changed, 34 insertions, 18 deletions
diff --git a/mysql-test/main/opt_trace_security.result b/mysql-test/main/opt_trace_security.result
index ab7dc1fa606..778494b549b 100644
--- a/mysql-test/main/opt_trace_security.result
+++ b/mysql-test/main/opt_trace_security.result
@@ -133,15 +133,23 @@ select * from db1.t1 {
"cost": 0.010504815
},
{
- "attaching_conditions_to_tables": {
- "attached_conditions_computation": [],
- "attached_conditions_summary": [
- {
- "table": "t1",
- "attached": null
- }
- ]
- }
+ "make_join_readinfo": [
+ {
+ "table": "t1",
+ "index_condition": null
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "attaching_conditions_to_tables": {
+ "attached_conditions_computation": [],
+ "attached_conditions_summary": [
+ {
+ "table": "t1",
+ "attached_condition": null
}
]
}
@@ -272,15 +280,23 @@ select * from db1.v1 {
"cost": 0.010504815
},
{
- "attaching_conditions_to_tables": {
- "attached_conditions_computation": [],
- "attached_conditions_summary": [
- {
- "table": "t1",
- "attached": null
- }
- ]
- }
+ "make_join_readinfo": [
+ {
+ "table": "t1",
+ "index_condition": null
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "attaching_conditions_to_tables": {
+ "attached_conditions_computation": [],
+ "attached_conditions_summary": [
+ {
+ "table": "t1",
+ "attached_condition": null
}
]
}