Fix comment typos in sqlite3.h. Ticket #2666. (CVS 4447)
FossilOrigin-Name: 2ea278a2af5b3e94acf5321375cc33d1f58c3885
This commit is contained in:
parent
afd6a43283
commit
98c948048b
12
manifest
12
manifest
@ -1,5 +1,5 @@
|
||||
C Add\stext\sto\sthe\sload_extension\sSQL\sfunction\sdocumentation\sthat\nexplains\slimitations\sin\sthe\suse\sof\sthat\sfunction.\s\sTicket\s#2672.\s(CVS\s4446)
|
||||
D 2007-10-01T13:45:04
|
||||
C Fix\scomment\stypos\sin\ssqlite3.h.\s\sTicket\s#2666.\s(CVS\s4447)
|
||||
D 2007-10-01T13:50:32
|
||||
F Makefile.in cbfb898945536a8f9ea8b897e1586dd1fdbcc5db
|
||||
F Makefile.linux-gcc 65241babba6faf1152bf86574477baab19190499
|
||||
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
|
||||
@ -130,7 +130,7 @@ F src/random.c 4a22746501bf36b0a088c66e38dde5daba6a35da
|
||||
F src/select.c 4706a6115da1bdc09a2be5991168a6cc2c0df267
|
||||
F src/server.c 087b92a39d883e3fa113cae259d64e4c7438bc96
|
||||
F src/shell.c 82089379833e361ba8a2ae65316a2173785300c0
|
||||
F src/sqlite.h.in 38c150bfb76c1792a93c9897ee774b5a20f0f3da
|
||||
F src/sqlite.h.in 60d1a884f49304787b07864ceba31e6df93a5a7c
|
||||
F src/sqlite3ext.h a93f59cdee3638dc0c9c086f80df743a4e68c3cb
|
||||
F src/sqliteInt.h ab7d3169cbfa911335fd94a61f22f052a9f5adeb
|
||||
F src/sqliteLimit.h 1bcbbdfa856f8b71b561abb31edb864b0eca1d12
|
||||
@ -580,7 +580,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
|
||||
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
|
||||
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
|
||||
F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
|
||||
P 005d780de6e9e377ee296ff576e58cf1b512f245
|
||||
R e5c5bdab974bf15dec956bf9d58e16f9
|
||||
P b2befc84c360dde42c6dd10cbcc9572e37852438
|
||||
R 61b9261456fdf23a3bea36b5be3aa692
|
||||
U drh
|
||||
Z ce44966a19ab56de0eaeaf617f455506
|
||||
Z c11ca39a98011f94ac40ccbbcd3220a3
|
||||
|
@ -1 +1 @@
|
||||
b2befc84c360dde42c6dd10cbcc9572e37852438
|
||||
2ea278a2af5b3e94acf5321375cc33d1f58c3885
|
@ -30,7 +30,7 @@
|
||||
** the version number) and changes its name to "sqlite3.h" as
|
||||
** part of the build process.
|
||||
**
|
||||
** @(#) $Id: sqlite.h.in,v 1.263 2007/09/21 12:43:17 drh Exp $
|
||||
** @(#) $Id: sqlite.h.in,v 1.264 2007/10/01 13:50:32 drh Exp $
|
||||
*/
|
||||
#ifndef _SQLITE3_H_
|
||||
#define _SQLITE3_H_
|
||||
@ -1482,7 +1482,7 @@ int sqlite3_open_v2(
|
||||
** most recent API call succeeded, the return value from sqlite3_errcode()
|
||||
** is undefined.
|
||||
**
|
||||
** The sqlite3_errmsg() and sqlite3_errmsg16() return English-langauge
|
||||
** The sqlite3_errmsg() and sqlite3_errmsg16() return English-language
|
||||
** text that describes the error, as either UTF8 or UTF16 respectively.
|
||||
** Memory to hold the error message string is managed internally. The
|
||||
** string may be overwritten or deallocated by subsequent calls to SQLite
|
||||
@ -2897,7 +2897,7 @@ int sqlite3_table_column_metadata(
|
||||
char const **pzCollSeq, /* OUTPUT: Collation sequence name */
|
||||
int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */
|
||||
int *pPrimaryKey, /* OUTPUT: True if column part of PK */
|
||||
int *pAutoinc /* OUTPUT: True if colums is auto-increment */
|
||||
int *pAutoinc /* OUTPUT: True if column is auto-increment */
|
||||
);
|
||||
|
||||
/*
|
||||
@ -3054,7 +3054,7 @@ struct sqlite3_module {
|
||||
** is usable) and false if it cannot.
|
||||
**
|
||||
** The optimizer automatically inverts terms of the form "expr OP column"
|
||||
** and makes other simplificatinos to the WHERE clause in an attempt to
|
||||
** and makes other simplifications to the WHERE clause in an attempt to
|
||||
** get as many WHERE clause terms into the form shown above as possible.
|
||||
** The aConstraint[] array only reports WHERE clause terms in the correct
|
||||
** form that refer to the particular virtual table being queried.
|
||||
@ -3143,7 +3143,7 @@ int sqlite3_create_module_v2(
|
||||
/*
|
||||
** Every module implementation uses a subclass of the following structure
|
||||
** to describe a particular instance of the module. Each subclass will
|
||||
** be taylored to the specific needs of the module implementation. The
|
||||
** be tailored to the specific needs of the module implementation. The
|
||||
** purpose of this superclass is to define certain fields that are common
|
||||
** to all module implementations.
|
||||
**
|
||||
@ -3209,7 +3209,7 @@ int sqlite3_overload_function(sqlite3*, const char *zFuncName, int nArg);
|
||||
** to be experimental. The interface might change in incompatible ways.
|
||||
** If this is a problem for you, do not use the interface at this time.
|
||||
**
|
||||
** When the virtual-table mechanism stablizes, we will declare the
|
||||
** When the virtual-table mechanism stabilizes, we will declare the
|
||||
** interface fixed, support it indefinitely, and remove this comment.
|
||||
**
|
||||
****** EXPERIMENTAL - subject to change without notice **************
|
||||
|
Loading…
x
Reference in New Issue
Block a user