From: drh Date: Fri, 19 Sep 2014 16:02:06 +0000 (+0000) Subject: Updates to comments. No code changes. X-Git-Tag: version-3.8.7~96 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7abda856074ec8fecc28ca7a5fb2fc630b403e23;p=thirdparty%2Fsqlite.git Updates to comments. No code changes. FossilOrigin-Name: 9b42c3da6b2593a10b8fe4b2fcc3d650132625c1 --- diff --git a/manifest b/manifest index 611616d0c2..c87b875a6b 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C The\sOP_Column\sopcode\sruns\sfaster\sand\sis\ssmaller\sby\smanually\sin-lining\sthe\ncode\sthat\spersists\sstring\svalues\sin\sthe\soutput\sregister. -D 2014-09-19T15:28:33.728 +C Updates\sto\scomments.\s\sNo\scode\schanges. +D 2014-09-19T16:02:06.389 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in cf57f673d77606ab0f2d9627ca52a9ba1464146a F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -292,7 +292,7 @@ F src/vdbe.c 9f2a0a2dfa06e99feabd754e9be3a436ac3cf97d F src/vdbe.h 09f5b4e3719fa454f252322b1cdab5cf1f361327 F src/vdbeInt.h f177bed1ec8d4eb5c7089f012aeb95f374745735 F src/vdbeapi.c e9e33b59834e3edc8790209765e069874c269d9d -F src/vdbeaux.c ecf0bb835f7c809ba8e22ba7d3a587b7a087ac52 +F src/vdbeaux.c 498b42510679767ea6c893c8c51a8fd935d7ab2d F src/vdbeblob.c 848238dc73e93e48432991bb5651bf87d865eca4 F src/vdbemem.c 5cd963730414a1a6ba53b8b340eba3f46ec2cb1d F src/vdbesort.c 75c66c2fc02d450b67b4816873fba8088feaf12c @@ -1198,7 +1198,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P 987a7a211913b3949da20e43423af376f72a28ba -R 03eb020eed7bf3a8527e5a4e8f2d486b +P 36b613ccf0ddb764af90841994da91b7fcaa8f00 +R 080b311a7df7cfe0ac5886dd9047451e U drh -Z 0d995c472ae8295ead3b2ebd0d73fc53 +Z bac819561e5ec88b9538e526b2bc8493 diff --git a/manifest.uuid b/manifest.uuid index f8720261f1..66235033a3 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -36b613ccf0ddb764af90841994da91b7fcaa8f00 \ No newline at end of file +9b42c3da6b2593a10b8fe4b2fcc3d650132625c1 \ No newline at end of file diff --git a/src/vdbeaux.c b/src/vdbeaux.c index 3ce373dffe..f4d50406b9 100644 --- a/src/vdbeaux.c +++ b/src/vdbeaux.c @@ -10,9 +10,7 @@ ** ************************************************************************* ** This file contains code used for creating, destroying, and populating -** a VDBE (or an "sqlite3_stmt" as it is known to the outside world.) Prior -** to version 2.8.7, all this code was combined into the vdbe.c source file. -** But that file was getting too big so this subroutines were split out. +** a VDBE (or an "sqlite3_stmt" as it is known to the outside world.) */ #include "sqliteInt.h" #include "vdbeInt.h" @@ -1606,7 +1604,7 @@ void sqlite3VdbeRewind(Vdbe *p){ /* ** Prepare a virtual machine for execution for the first time after ** creating the virtual machine. This involves things such -** as allocating stack space and initializing the program counter. +** as allocating registers and initializing the program counter. ** After the VDBE has be prepped, it can be executed by one or more ** calls to sqlite3VdbeExec(). ** @@ -1818,11 +1816,7 @@ static void closeAllCursors(Vdbe *p){ } /* -** Clean up the VM after execution. -** -** This routine will automatically close any cursors, lists, and/or -** sorters that were left open. It also deletes the values of -** variables in the aVar[] array. +** Clean up the VM after a single run. */ static void Cleanup(Vdbe *p){ sqlite3 *db = p->db;