diff options
Diffstat (limited to '')
-rw-r--r-- | mysql-test/main/show_analyze.result | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mysql-test/main/show_analyze.result b/mysql-test/main/show_analyze.result index cc427b45..f55a8be7 100644 --- a/mysql-test/main/show_analyze.result +++ b/mysql-test/main/show_analyze.result @@ -1,6 +1,6 @@ drop table if exists t0, t1, t2, t3, t4; drop view if exists v1; -SET @old_debug= @@session.debug; +SET @old_debug= @@session.debug_dbug; set debug_sync='RESET'; create table t0 (a int); insert into t0 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); @@ -18,7 +18,7 @@ show analyze for (select a from t0 limit 1); ERROR HY000: You may only use constant expressions in this statement connect con1, localhost, root,,; connection con1; -SET @old_debug= @@session.debug; +SET @old_debug= @@session.debug_dbug; connection default; show analyze for $thr2; ERROR HY000: Target is not executing an operation with a query plan @@ -409,6 +409,7 @@ ANALYZE }, "query_block": { "select_id": 1, + "cost": "REPLACED", "r_loops": 1, "r_total_time_ms": "REPLACED", "filesort": { @@ -425,9 +426,11 @@ ANALYZE "table": { "table_name": "t1", "access_type": "ALL", + "loops": 1, "r_loops": 1, "rows": 2, "r_rows": 2, + "cost": "REPLACED", "r_table_time_ms": "REPLACED", "r_other_time_ms": "REPLACED", "r_engine_stats": REPLACED, |