diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-01 18:15:00 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-01 18:15:00 +0000 |
commit | a2a2e32c02643a0cec111511220227703fda1cd5 (patch) | |
tree | 69cc2b631234c2a8e026b9cd4d72676c61c594df /mysql-test/main/show_analyze.result | |
parent | Releasing progress-linux version 1:10.11.8-1~progress7.99u1. (diff) | |
download | mariadb-a2a2e32c02643a0cec111511220227703fda1cd5.tar.xz mariadb-a2a2e32c02643a0cec111511220227703fda1cd5.zip |
Merging upstream version 1:11.4.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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, |