diff options
author | drh <drh@noemail.net> | 2013-10-30 13:46:01 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2013-10-30 13:46:01 +0000 |
commit | 5b843aa032fdbaf306c6216983f94985c22a708a (patch) | |
tree | 73a6f5759a3b95e137169d8c4a4d227fa6d7d257 /test/misc3.test | |
parent | 4af5bee41d06cd24398d69ad7fcbb1f80e4c58d1 (diff) | |
download | sqlite-5b843aa032fdbaf306c6216983f94985c22a708a.tar.gz sqlite-5b843aa032fdbaf306c6216983f94985c22a708a.zip |
In the P4 column of the EXPLAIN listing, abbreviate "keyinfo" as just "k" and
"BINARY" as just "B".
FossilOrigin-Name: 72d45eb79b5d0505050cff57a00d725948b2a0c0
Diffstat (limited to 'test/misc3.test')
-rw-r--r-- | test/misc3.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/misc3.test b/test/misc3.test index 81a8266b9..bc1f0ff91 100644 --- a/test/misc3.test +++ b/test/misc3.test @@ -283,7 +283,7 @@ ifcapable {explain} { }] set y [regexp { 123456789012 } $x] lappend y [regexp { 4.5678 } $x] - lappend y [regexp {,-BINARY} $x] + lappend y [regexp {,-B} $x] } {1 1 1} } else { do_test misc3-6.11-utf8 { @@ -293,7 +293,7 @@ ifcapable {explain} { set y [regexp { 123456789012 } $x] lappend y [regexp { 4.5678 } $x] lappend y [regexp { hello } $x] - lappend y [regexp {,-BINARY} $x] + lappend y [regexp {,-B} $x] } {1 1 1 1} } } |