]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Widen the opcode column of explain output in the shell. (CVS 2625)
authordrh <drh@noemail.net>
Sat, 27 Aug 2005 01:50:53 +0000 (01:50 +0000)
committerdrh <drh@noemail.net>
Sat, 27 Aug 2005 01:50:53 +0000 (01:50 +0000)
FossilOrigin-Name: dd3b00aa0bf3b847b0b2f20f6df60d4e3a2d81df

manifest
manifest.uuid
src/shell.c

index 0ccfb0a6f192fd42c6a58eea408ebd2fc086aa9c..f9c9822d5645cd7a1b50d7146166ee651e012c68 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C When\sthe\sleft-hand\sside\sof\san\sIN\soperator\sis\sconstant\sand\sthe\sright-hand\nside\sis\sa\sSELECT,\srecognize\sthat\sthe\sIN\soperator\sis\snot\sconstant.\nTicket\s#1380.\s(CVS\s2624)
-D 2005-08-25T12:45:04
+C Widen\sthe\sopcode\scolumn\sof\sexplain\soutput\sin\sthe\sshell.\s(CVS\s2625)
+D 2005-08-27T01:50:54
 F Makefile.in 87717916c787099d5a9a64f7a2acc188b4bbcadd
 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -64,7 +64,7 @@ F src/prepare.c 86f0d8e744b8d956eff6bc40e29049efee017610
 F src/printf.c cea584c5888688c650d856563aadc4296b5afac7
 F src/random.c 90adff4e73a3b249eb4f1fc2a6ff9cf78c7233a4
 F src/select.c f441648eb191dcf1e67ae61475ea3b40a0eeb787
-F src/shell.c 86c16f0d534aa51cc82cf9f66903d4eb681580e7
+F src/shell.c 7fb744da457b0d11e0af7f6a2f6b000fc09fe588
 F src/sqlite.h.in a3b75a6b2e66865fba4ec1b698d00c7d95fe27a2
 F src/sqliteInt.h e5fb91af1d607f3bc84bfb7da8534fd3298a38b0
 F src/table.c 25b3ff2b39b7d87e8d4a5da0713d68dfc06cbee9
@@ -298,7 +298,7 @@ F www/tclsqlite.tcl 3df553505b6efcad08f91e9b975deb2e6c9bb955
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P 76ec0b3d3a6cc82965e4f993375780b954c53dd1
-R 52db1856673c57f1c9eec51f995f0a47
+P fc9e04609b6968fc5039a6f9f808aac681f4fc41
+R 5ac7de5aa63d911385908b28b345c00b
 U drh
-Z 2cab6797642524cf30db4c5e3889225c
+Z 1528f9fa0f2ffa2b725ac3031fce29f6
index 86354c7cd7bccc40c580aa506d0771705de236f9..662ac5869b7b697af488e8430b4c5120a0dc34b0 100644 (file)
@@ -1 +1 @@
-fc9e04609b6968fc5039a6f9f808aac681f4fc41
\ No newline at end of file
+dd3b00aa0bf3b847b0b2f20f6df60d4e3a2d81df
\ No newline at end of file
index 245657ec5434f273fd84e3b81db6016c83f118b8..74e542d396771088e1b14969393e534eeae6160b 100644 (file)
@@ -12,7 +12,7 @@
 ** This file contains code to implement the "sqlite" command line
 ** utility for accessing SQLite databases.
 **
-** $Id: shell.c,v 1.123 2005/08/05 18:50:52 drh Exp $
+** $Id: shell.c,v 1.124 2005/08/27 01:50:54 drh Exp $
 */
 #include <stdlib.h>
 #include <string.h>
@@ -984,10 +984,10 @@ static int do_meta_command(char *zLine, struct callback_data *p){
       p->showHeader = 1;
       memset(p->colWidth,0,ArraySize(p->colWidth));
       p->colWidth[0] = 4;
-      p->colWidth[1] = 12;
+      p->colWidth[1] = 14;
       p->colWidth[2] = 10;
       p->colWidth[3] = 10;
-      p->colWidth[4] = 35;
+      p->colWidth[4] = 33;
     }else if (p->explainPrev.valid) {
       p->explainPrev.valid = 0;
       p->mode = p->explainPrev.mode;