diff options
author | drh <> | 2022-04-22 17:36:10 +0000 |
---|---|---|
committer | drh <> | 2022-04-22 17:36:10 +0000 |
commit | da653b897db2b7cc9cb636a5089860fa1520bf12 (patch) | |
tree | 353077d457648fb182b590bfe328ee1bc68a6d1c /test/tester.tcl | |
parent | 67f70bea06eea1e20124c4e97d2f545b3f10b473 (diff) | |
download | sqlite-da653b897db2b7cc9cb636a5089860fa1520bf12.tar.gz sqlite-da653b897db2b7cc9cb636a5089860fa1520bf12.zip |
Improve EXPLAIN QUERY PLAN output and comments on bytecode listings by
distinguishing between "subquery" and "join" and using consistent names
across EQP and bytecode.
FossilOrigin-Name: a2d3ee92420ec564e31eb0005367cf7ff3d00bfaed5a98ffdbe17c91c95d9d97
Diffstat (limited to 'test/tester.tcl')
-rw-r--r-- | test/tester.tcl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/tester.tcl b/test/tester.tcl index bfcc831ff..9d29fdb8d 100644 --- a/test/tester.tcl +++ b/test/tester.tcl @@ -1011,6 +1011,7 @@ proc query_plan_graph {sql} { append a [append_graph " " dx cx 0] regsub -all { 0x[A-F0-9]+\y} $a { xxxxxx} a regsub -all {(MATERIALIZE|CO-ROUTINE|SUBQUERY) \d+\y} $a {\1 xxxxxx} a + regsub -all {\((join|subquery)-\d+\)} $a {(\1-xxxxxx)} a return $a } |