aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.c7
-rw-r--r--src/resolve.c3
-rw-r--r--src/sqlite.h.in2
3 files changed, 6 insertions, 6 deletions
diff --git a/src/main.c b/src/main.c
index 2bcecdb78..d552f7fbc 100644
--- a/src/main.c
+++ b/src/main.c
@@ -445,9 +445,10 @@ int sqlite3_config(int op, ...){
break;
}
case SQLITE_CONFIG_PAGECACHE: {
- /* EVIDENCE-OF: R-31408-40510 There are three arguments to
- ** SQLITE_CONFIG_PAGECACHE: A pointer to 8-byte aligned memory, the size
- ** of each page buffer (sz), and the number of pages (N). */
+ /* EVIDENCE-OF: R-18761-36601 There are three arguments to
+ ** SQLITE_CONFIG_PAGECACHE: A pointer to 8-byte aligned memory (pMem),
+ ** the size of each page cache line (sz), and the number of cache lines
+ ** (N). */
sqlite3GlobalConfig.pPage = va_arg(ap, void*);
sqlite3GlobalConfig.szPage = va_arg(ap, int);
sqlite3GlobalConfig.nPage = va_arg(ap, int);
diff --git a/src/resolve.c b/src/resolve.c
index b3e887778..bb6646256 100644
--- a/src/resolve.c
+++ b/src/resolve.c
@@ -328,7 +328,6 @@ static int lookupName(
}
if( iCol>=pTab->nCol && sqlite3IsRowid(zCol) && VisibleRowid(pTab) ){
/* IMP: R-51414-32910 */
- /* IMP: R-44911-55124 */
iCol = -1;
}
if( iCol<pTab->nCol ){
@@ -363,7 +362,7 @@ static int lookupName(
&& VisibleRowid(pMatch->pTab)
){
cnt = 1;
- pExpr->iColumn = -1; /* IMP: R-44911-55124 */
+ pExpr->iColumn = -1;
pExpr->affinity = SQLITE_AFF_INTEGER;
}
diff --git a/src/sqlite.h.in b/src/sqlite.h.in
index 6ad3da5df..e79757106 100644
--- a/src/sqlite.h.in
+++ b/src/sqlite.h.in
@@ -887,7 +887,7 @@ struct sqlite3_io_methods {
** [VFSes] currently in use. ^(The argument X in
** sqlite3_file_control(db,SQLITE_FCNTL_VFS_POINTER,X) must be
** of type "[sqlite3_vfs] **". This opcodes will set *X
-** to a pointer to the top-level VFS.^)
+** to a pointer to the top-level VFS.)^
** ^When there are multiple VFS shims in the stack, this opcode finds the
** upper-most shim only.
**