mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
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.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user