Fix for #2451. Code comment changes only. (CVS 4114)

FossilOrigin-Name: bc61dcbf64af56d4a1394c8ff46e91245dc16d15
This commit is contained in:
danielk1977 2007-06-24 16:11:03 +00:00
parent 418899a359
commit d62e76c792
3 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
C Make\ssetting\s"PRAGMA\sauto_vacuum\s=\sincremental"\spersistent\sif\sit\sis\sexecuted\sbefore\sthe\sdatabase\sfile\sis\screated.\s(CVS\s4113)
D 2007-06-24T10:14:00
C Fix\sfor\s#2451.\sCode\scomment\schanges\sonly.\s(CVS\s4114)
D 2007-06-24T16:11:03
F Makefile.in 7f7485a4cc039476a42e534b3f26ec90e2f9753e
F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@ -137,7 +137,7 @@ F src/update.c 3359041db390a8f856d67272f299600e2104f350
F src/utf.c 01b2aba02b10d12903e9e1ff897215c9faf6b662
F src/util.c 80cdf6b68d03b8f0ab3237a390842e039cff66c6
F src/vacuum.c 8bd895d29e7074e78d4e80f948e35ddc9cf2beef
F src/vdbe.c 0f4d3085e0aabe00aedfffb43ec5d07da2c54d9a
F src/vdbe.c 81714b7df6c7769ab300446e070fc0a5bb2ece86
F src/vdbe.h 001c5b257567c1d3de7feb2203aac71d0d7b16a3
F src/vdbeInt.h 7d2bf163d6d4e815724a457f2216dd8e38c3955c
F src/vdbeapi.c 7930b9a188ab385287ca3eb3840af7225cb43549
@ -514,7 +514,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
P 1fb4251a707d0b79d250d6ea2022913b371d5f14
R 6b7b2c3441b3702881ad19fe0040737f
P c666fad151f25ab8365c497cd0967f4a5a2adb90
R 55510efe85475a231257ad94221f8a4a
U danielk1977
Z 1b4f0a37e5195a0d15b992b6f3cc848b
Z 19b49e3d7d8dd1d009e5f547530e18f8

View File

@ -1 +1 @@
c666fad151f25ab8365c497cd0967f4a5a2adb90
bc61dcbf64af56d4a1394c8ff46e91245dc16d15

View File

@ -43,7 +43,7 @@
** in this file for details. If in doubt, do not deviate from existing
** commenting and indentation practices when changing or adding code.
**
** $Id: vdbe.c,v 1.629 2007/06/24 10:14:00 danielk1977 Exp $
** $Id: vdbe.c,v 1.630 2007/06/24 16:11:03 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@ -2512,7 +2512,7 @@ case OP_Transaction: { /* no-push */
** If P1 is negative, then this is a request to read the size of a
** databases free-list. P2 must be set to 1 in this case. The actual
** database accessed is ((P1+1)*-1). For example, a P1 parameter of -1
** corresponds to database 0 ("main"), a P1 of -1 is database 1 ("temp").
** corresponds to database 0 ("main"), a P1 of -2 is database 1 ("temp").
**
** There must be a read-lock on the database (either a transaction
** must be started or there must be an open cursor) before