mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-30032: EXPLAIN FORMAT=JSON output: part #2: print 'loops'.
This commit is contained in:
@ -22,6 +22,7 @@ EXPLAIN
|
||||
"table": {
|
||||
"table_name": "t1",
|
||||
"access_type": "ALL",
|
||||
"loops": 1,
|
||||
"rows": 2,
|
||||
"cost": "COST_REPLACED",
|
||||
"filtered": 100
|
||||
@ -38,6 +39,7 @@ EXPLAIN
|
||||
"table": {
|
||||
"table_name": "tbl_alias1",
|
||||
"access_type": "ALL",
|
||||
"loops": 1,
|
||||
"rows": 1,
|
||||
"cost": "COST_REPLACED",
|
||||
"filtered": 100,
|
||||
@ -56,6 +58,7 @@ EXPLAIN
|
||||
"test.tbl_alias1.column_name_2",
|
||||
"test.tbl_alias1.column_name_1"
|
||||
],
|
||||
"loops": 1,
|
||||
"rows": 1,
|
||||
"cost": "COST_REPLACED",
|
||||
"filtered": 100,
|
||||
|
Reference in New Issue
Block a user