diff options
author | Sergei Petrunia <psergey@askmonty.org> | 2014-12-01 21:35:31 +0300 |
---|---|---|
committer | Sergei Petrunia <psergey@askmonty.org> | 2014-12-01 21:35:31 +0300 |
commit | 753718c20194f9f04432a5657a661eb6e9440483 (patch) | |
tree | 27da8760e0b7e436f3d3751049fb2b215cfc4912 /mysql-test/r/analyze_format_json.result | |
parent | c46eadb2b33ca152525a18d9b5425fedbef7f277 (diff) | |
download | mariadb-git-753718c20194f9f04432a5657a661eb6e9440483.tar.gz |
EXPLAIN FORMAT=JSON: support SJ-Materialization
- Switch Explain data structure from "flat" representation of
SJ-Materialization into nested one.
- Update functions that print tabular output to operate on the
nested structure.
- Add function to generate JSON output.
Diffstat (limited to 'mysql-test/r/analyze_format_json.result')
-rw-r--r-- | mysql-test/r/analyze_format_json.result | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mysql-test/r/analyze_format_json.result b/mysql-test/r/analyze_format_json.result index 91bdfca039b..27b36bbba59 100644 --- a/mysql-test/r/analyze_format_json.result +++ b/mysql-test/r/analyze_format_json.result @@ -167,11 +167,5 @@ EXPLAIN } } } -select count(*) from t1 A, t1 B where A.b<20 and B.b<60; -count(*) -1200 -select count(*) from t1 A, t1 B where A.b<20 and B.b<60 and A.c > B.c; -count(*) -190 drop table t1; drop table t0; |