diff options
Diffstat (limited to 'mysql-test/main/explain_json.result')
-rw-r--r-- | mysql-test/main/explain_json.result | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/mysql-test/main/explain_json.result b/mysql-test/main/explain_json.result index 17f83fe5362..a87a56a05cc 100644 --- a/mysql-test/main/explain_json.result +++ b/mysql-test/main/explain_json.result @@ -1203,7 +1203,7 @@ create table t1 (i int) engine=myisam; explain select * from t1; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 system NULL NULL NULL NULL 0 Const row not found +1 SIMPLE NULL NULL NULL NULL NULL NULL NULL no matching row in const table explain format=json select * from t1; EXPLAIN @@ -1211,11 +1211,7 @@ EXPLAIN "query_block": { "select_id": 1, "table": { - "table_name": "t1", - "access_type": "system", - "rows": 0, - "filtered": 0, - "const_row_not_found": true + "message": "no matching row in const table" } } } |