diff options
author | Sergei Petrunia <psergey@askmonty.org> | 2014-12-06 20:13:38 +0300 |
---|---|---|
committer | Sergei Petrunia <psergey@askmonty.org> | 2014-12-06 20:13:38 +0300 |
commit | eeef80d09f8045d99963a2bf2fa92595c55bb26d (patch) | |
tree | ea7f35209ac2a6d5c05c955437a70c5c8c6514cf /mysql-test/r/explain_json.result | |
parent | dc259324d767e10f118c2d14dc905e1bb54aa58a (diff) | |
download | mariadb-git-eeef80d09f8045d99963a2bf2fa92595c55bb26d.tar.gz |
EXPLAIN FORMAT=JSON : Fix MDEV-7266, bug in pretty-printer
- Single_line_formatting_helper should not accidentally exit the
DISABLED state. No JSON construct should be able to move the
Single_line_formatting_helper from DISABLED state.
Diffstat (limited to 'mysql-test/r/explain_json.result')
-rw-r--r-- | mysql-test/r/explain_json.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/explain_json.result b/mysql-test/r/explain_json.result index e1135298924..94a8d822d72 100644 --- a/mysql-test/r/explain_json.result +++ b/mysql-test/r/explain_json.result @@ -1,4 +1,4 @@ -drop table if exists t0,t1; +drop table if exists t0,t1,t2; create table t0(a int); insert into t0 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); explain format=json select * from t0; |