diff options
Diffstat (limited to 'ext/sqlite/libsqlite')
32 files changed, 32 insertions, 32 deletions
diff --git a/ext/sqlite/libsqlite/src/attach.c b/ext/sqlite/libsqlite/src/attach.c index d50c218b6..f5b7e6b8d 100644 --- a/ext/sqlite/libsqlite/src/attach.c +++ b/ext/sqlite/libsqlite/src/attach.c @@ -11,7 +11,7 @@ ************************************************************************* ** This file contains code used to implement the ATTACH and DETACH commands. ** -** $Id: attach.c,v 1.4.4.1 2005/09/07 15:11:31 iliaa Exp $ +** $Id: attach.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" diff --git a/ext/sqlite/libsqlite/src/auth.c b/ext/sqlite/libsqlite/src/auth.c index 9143971c7..9649423e2 100644 --- a/ext/sqlite/libsqlite/src/auth.c +++ b/ext/sqlite/libsqlite/src/auth.c @@ -14,7 +14,7 @@ ** systems that do not need this facility may omit it by recompiling ** the library with -DSQLITE_OMIT_AUTHORIZATION=1 ** -** $Id: auth.c,v 1.6.2.1 2005/09/07 15:11:31 iliaa Exp $ +** $Id: auth.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" diff --git a/ext/sqlite/libsqlite/src/btree.c b/ext/sqlite/libsqlite/src/btree.c index f56d869c4..afe58d07e 100644 --- a/ext/sqlite/libsqlite/src/btree.c +++ b/ext/sqlite/libsqlite/src/btree.c @@ -9,7 +9,7 @@ ** May you share freely, never taking more than you give. ** ************************************************************************* -** $Id: btree.c,v 1.5.4.1 2005/09/07 15:11:31 iliaa Exp $ +** $Id: btree.c 195361 2005-09-07 15:11:33Z iliaa $ ** ** This file implements a external (disk-based) database using BTrees. ** For a detailed discussion of BTrees, refer to diff --git a/ext/sqlite/libsqlite/src/btree.h b/ext/sqlite/libsqlite/src/btree.h index ce124cfe9..865a004c7 100644 --- a/ext/sqlite/libsqlite/src/btree.h +++ b/ext/sqlite/libsqlite/src/btree.h @@ -13,7 +13,7 @@ ** subsystem. See comments in the source code for a detailed description ** of what each interface routine does. ** -** @(#) $Id: btree.h,v 1.5.4.1 2005/09/07 15:11:31 iliaa Exp $ +** @(#) $Id: btree.h 195361 2005-09-07 15:11:33Z iliaa $ */ #ifndef _BTREE_H_ #define _BTREE_H_ diff --git a/ext/sqlite/libsqlite/src/btree_rb.c b/ext/sqlite/libsqlite/src/btree_rb.c index b9da43515..4d08e00cb 100644 --- a/ext/sqlite/libsqlite/src/btree_rb.c +++ b/ext/sqlite/libsqlite/src/btree_rb.c @@ -9,7 +9,7 @@ ** May you share freely, never taking more than you give. ** ************************************************************************* -** $Id: btree_rb.c,v 1.5.4.1 2005/09/07 15:11:31 iliaa Exp $ +** $Id: btree_rb.c 195361 2005-09-07 15:11:33Z iliaa $ ** ** This file implements an in-core database using Red-Black balanced ** binary trees. diff --git a/ext/sqlite/libsqlite/src/build.c b/ext/sqlite/libsqlite/src/build.c index a18112ace..015e5405b 100644 --- a/ext/sqlite/libsqlite/src/build.c +++ b/ext/sqlite/libsqlite/src/build.c @@ -23,7 +23,7 @@ ** ROLLBACK ** PRAGMA ** -** $Id: build.c,v 1.6.4.1 2005/09/07 15:11:31 iliaa Exp $ +** $Id: build.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" #include <ctype.h> diff --git a/ext/sqlite/libsqlite/src/copy.c b/ext/sqlite/libsqlite/src/copy.c index 1dc5a0ddb..95bc80412 100644 --- a/ext/sqlite/libsqlite/src/copy.c +++ b/ext/sqlite/libsqlite/src/copy.c @@ -11,7 +11,7 @@ ************************************************************************* ** This file contains code used to implement the COPY command. ** -** $Id: copy.c,v 1.4.4.1 2005/09/07 15:11:32 iliaa Exp $ +** $Id: copy.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" diff --git a/ext/sqlite/libsqlite/src/date.c b/ext/sqlite/libsqlite/src/date.c index 59cd0530a..7e0a810c1 100644 --- a/ext/sqlite/libsqlite/src/date.c +++ b/ext/sqlite/libsqlite/src/date.c @@ -16,7 +16,7 @@ ** sqliteRegisterDateTimeFunctions() found at the bottom of the file. ** All other code has file scope. ** -** $Id: date.c,v 1.3.4.1.2.3.2.2 2009/04/07 11:45:13 kalle Exp $ +** $Id: date.c 278363 2009-04-07 11:45:13Z kalle $ ** ** NOTES: ** diff --git a/ext/sqlite/libsqlite/src/delete.c b/ext/sqlite/libsqlite/src/delete.c index b5db904dd..cd0b2cae0 100644 --- a/ext/sqlite/libsqlite/src/delete.c +++ b/ext/sqlite/libsqlite/src/delete.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle DELETE FROM statements. ** -** $Id: delete.c,v 1.5.4.1 2005/09/07 15:11:32 iliaa Exp $ +** $Id: delete.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" diff --git a/ext/sqlite/libsqlite/src/encode.c b/ext/sqlite/libsqlite/src/encode.c index 956d7d128..16060742b 100644 --- a/ext/sqlite/libsqlite/src/encode.c +++ b/ext/sqlite/libsqlite/src/encode.c @@ -15,7 +15,7 @@ ** data in an SQLite database. The code in this file is not used by any other ** part of the SQLite library. ** -** $Id: encode.c,v 1.5.4.1.2.1 2006/12/24 20:50:02 iliaa Exp $ +** $Id: encode.c 225725 2006-12-24 20:50:02Z iliaa $ */ #include <string.h> #include <assert.h> diff --git a/ext/sqlite/libsqlite/src/expr.c b/ext/sqlite/libsqlite/src/expr.c index 11d298d69..1a0da7a20 100644 --- a/ext/sqlite/libsqlite/src/expr.c +++ b/ext/sqlite/libsqlite/src/expr.c @@ -12,7 +12,7 @@ ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions in SQLite. ** -** $Id: expr.c,v 1.5.4.1 2005/09/07 15:11:32 iliaa Exp $ +** $Id: expr.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" #include <ctype.h> diff --git a/ext/sqlite/libsqlite/src/func.c b/ext/sqlite/libsqlite/src/func.c index 0d553f4a1..b8be4361a 100644 --- a/ext/sqlite/libsqlite/src/func.c +++ b/ext/sqlite/libsqlite/src/func.c @@ -16,7 +16,7 @@ ** sqliteRegisterBuildinFunctions() found at the bottom of the file. ** All other code has file scope. ** -** $Id: func.c,v 1.5.4.1 2005/09/07 15:11:32 iliaa Exp $ +** $Id: func.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include <ctype.h> #include <math.h> diff --git a/ext/sqlite/libsqlite/src/hash.c b/ext/sqlite/libsqlite/src/hash.c index 5ecb9e50a..582570f72 100644 --- a/ext/sqlite/libsqlite/src/hash.c +++ b/ext/sqlite/libsqlite/src/hash.c @@ -12,7 +12,7 @@ ** This is the implementation of generic hash-tables ** used in SQLite. ** -** $Id: hash.c,v 1.6.4.1 2005/09/07 15:11:32 iliaa Exp $ +** $Id: hash.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" #include <assert.h> diff --git a/ext/sqlite/libsqlite/src/hash.h b/ext/sqlite/libsqlite/src/hash.h index ea86c1b88..19488416f 100644 --- a/ext/sqlite/libsqlite/src/hash.h +++ b/ext/sqlite/libsqlite/src/hash.h @@ -12,7 +12,7 @@ ** This is the header file for the generic hash-table implemenation ** used in SQLite. ** -** $Id: hash.h,v 1.6.4.1 2005/09/07 15:11:32 iliaa Exp $ +** $Id: hash.h 195361 2005-09-07 15:11:33Z iliaa $ */ #ifndef _SQLITE_HASH_H_ #define _SQLITE_HASH_H_ diff --git a/ext/sqlite/libsqlite/src/insert.c b/ext/sqlite/libsqlite/src/insert.c index 6ec361977..59f8c9b4c 100644 --- a/ext/sqlite/libsqlite/src/insert.c +++ b/ext/sqlite/libsqlite/src/insert.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle INSERT statements in SQLite. ** -** $Id: insert.c,v 1.5.4.1 2005/09/07 15:11:32 iliaa Exp $ +** $Id: insert.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" diff --git a/ext/sqlite/libsqlite/src/main.c b/ext/sqlite/libsqlite/src/main.c index e7c6ab685..2af43d834 100644 --- a/ext/sqlite/libsqlite/src/main.c +++ b/ext/sqlite/libsqlite/src/main.c @@ -14,7 +14,7 @@ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: main.c,v 1.7.4.1 2005/09/07 15:11:32 iliaa Exp $ +** $Id: main.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" #include "os.h" diff --git a/ext/sqlite/libsqlite/src/pager.c b/ext/sqlite/libsqlite/src/pager.c index 64c3e4d7b..7f26cac89 100644 --- a/ext/sqlite/libsqlite/src/pager.c +++ b/ext/sqlite/libsqlite/src/pager.c @@ -18,7 +18,7 @@ ** file simultaneously, or one process from reading the database while ** another is writing. ** -** @(#) $Id: pager.c,v 1.6.4.2 2005/12/20 15:26:26 iliaa Exp $ +** @(#) $Id: pager.c 203289 2005-12-20 15:26:26Z iliaa $ */ #include "os.h" /* Must be first to enable large file support */ #include "sqliteInt.h" diff --git a/ext/sqlite/libsqlite/src/pager.h b/ext/sqlite/libsqlite/src/pager.h index 3e68b7f83..8d3600f6c 100644 --- a/ext/sqlite/libsqlite/src/pager.h +++ b/ext/sqlite/libsqlite/src/pager.h @@ -13,7 +13,7 @@ ** subsystem. The page cache subsystem reads and writes a file a page ** at a time and provides a journal for rollback. ** -** @(#) $Id: pager.h,v 1.5.4.1 2005/09/07 15:11:32 iliaa Exp $ +** @(#) $Id: pager.h 195361 2005-09-07 15:11:33Z iliaa $ */ /* diff --git a/ext/sqlite/libsqlite/src/parse.y b/ext/sqlite/libsqlite/src/parse.y index da2ac2d3c..0b4c2ef55 100644 --- a/ext/sqlite/libsqlite/src/parse.y +++ b/ext/sqlite/libsqlite/src/parse.y @@ -14,7 +14,7 @@ ** the parser. Lemon will also generate a header file containing ** numeric codes for all of the tokens. ** -** @(#) $Id: parse.y,v 1.5.4.1 2005/09/07 15:11:32 iliaa Exp $ +** @(#) $Id: parse.y 195361 2005-09-07 15:11:33Z iliaa $ */ %token_prefix TK_ %token_type {Token} diff --git a/ext/sqlite/libsqlite/src/pragma.c b/ext/sqlite/libsqlite/src/pragma.c index 9d958246b..bd0bd3b6d 100644 --- a/ext/sqlite/libsqlite/src/pragma.c +++ b/ext/sqlite/libsqlite/src/pragma.c @@ -11,7 +11,7 @@ ************************************************************************* ** This file contains code used to implement the PRAGMA command. ** -** $Id: pragma.c,v 1.4.4.1 2005/09/07 15:11:32 iliaa Exp $ +** $Id: pragma.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" #include <ctype.h> diff --git a/ext/sqlite/libsqlite/src/random.c b/ext/sqlite/libsqlite/src/random.c index 602c88813..4e8139e78 100644 --- a/ext/sqlite/libsqlite/src/random.c +++ b/ext/sqlite/libsqlite/src/random.c @@ -15,7 +15,7 @@ ** Random numbers are used by some of the database backends in order ** to generate random integer keys for tables or random filenames. ** -** $Id: random.c,v 1.5.4.1 2005/09/07 15:11:32 iliaa Exp $ +** $Id: random.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" #include "os.h" diff --git a/ext/sqlite/libsqlite/src/select.c b/ext/sqlite/libsqlite/src/select.c index 1c48da9cd..8d83c5698 100644 --- a/ext/sqlite/libsqlite/src/select.c +++ b/ext/sqlite/libsqlite/src/select.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle SELECT statements in SQLite. ** -** $Id: select.c,v 1.6.4.1 2005/09/07 15:11:32 iliaa Exp $ +** $Id: select.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" diff --git a/ext/sqlite/libsqlite/src/sqlite.h.in b/ext/sqlite/libsqlite/src/sqlite.h.in index e92e41897..855ca061f 100644 --- a/ext/sqlite/libsqlite/src/sqlite.h.in +++ b/ext/sqlite/libsqlite/src/sqlite.h.in @@ -12,7 +12,7 @@ ** This header file defines the interface that the SQLite library ** presents to client programs. ** -** @(#) $Id: sqlite.h.in,v 1.6.4.1 2005/09/07 15:11:33 iliaa Exp $ +** @(#) $Id: sqlite.h.in 195361 2005-09-07 15:11:33Z iliaa $ */ #ifndef _SQLITE_H_ #define _SQLITE_H_ diff --git a/ext/sqlite/libsqlite/src/sqlite.w32.h b/ext/sqlite/libsqlite/src/sqlite.w32.h index b85216f16..abdd30c4c 100644 --- a/ext/sqlite/libsqlite/src/sqlite.w32.h +++ b/ext/sqlite/libsqlite/src/sqlite.w32.h @@ -12,7 +12,7 @@ ** This header file defines the interface that the SQLite library ** presents to client programs. ** -** @(#) $Id: sqlite.w32.h,v 1.6.2.2 2005/12/20 15:26:26 iliaa Exp $ +** @(#) $Id: sqlite.w32.h 203289 2005-12-20 15:26:26Z iliaa $ */ #ifndef _SQLITE_H_ #define _SQLITE_H_ diff --git a/ext/sqlite/libsqlite/src/sqliteInt.h b/ext/sqlite/libsqlite/src/sqliteInt.h index 7ab879cd3..4c819de69 100644 --- a/ext/sqlite/libsqlite/src/sqliteInt.h +++ b/ext/sqlite/libsqlite/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.6.4.2 2005/12/20 15:26:26 iliaa Exp $ +** @(#) $Id: sqliteInt.h 203289 2005-12-20 15:26:26Z iliaa $ */ #include "config.h" #include "sqlite.h" diff --git a/ext/sqlite/libsqlite/src/tokenize.c b/ext/sqlite/libsqlite/src/tokenize.c index 67b55e26d..f9b6afeda 100644 --- a/ext/sqlite/libsqlite/src/tokenize.c +++ b/ext/sqlite/libsqlite/src/tokenize.c @@ -15,7 +15,7 @@ ** individual tokens and sends those tokens one-by-one over to the ** parser for analysis. ** -** $Id: tokenize.c,v 1.6.4.1 2005/09/07 15:11:33 iliaa Exp $ +** $Id: tokenize.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" #include "os.h" diff --git a/ext/sqlite/libsqlite/src/update.c b/ext/sqlite/libsqlite/src/update.c index 5afe0699f..95a83b142 100644 --- a/ext/sqlite/libsqlite/src/update.c +++ b/ext/sqlite/libsqlite/src/update.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle UPDATE statements. ** -** $Id: update.c,v 1.5.4.1 2005/09/07 15:11:33 iliaa Exp $ +** $Id: update.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" diff --git a/ext/sqlite/libsqlite/src/util.c b/ext/sqlite/libsqlite/src/util.c index dc63d4dc8..563889c2f 100644 --- a/ext/sqlite/libsqlite/src/util.c +++ b/ext/sqlite/libsqlite/src/util.c @@ -14,7 +14,7 @@ ** This file contains functions for allocating memory, comparing ** strings, and stuff like that. ** -** $Id: util.c,v 1.6.4.2 2005/12/20 15:26:26 iliaa Exp $ +** $Id: util.c 203289 2005-12-20 15:26:26Z iliaa $ */ #include "sqliteInt.h" #include <stdarg.h> diff --git a/ext/sqlite/libsqlite/src/vacuum.c b/ext/sqlite/libsqlite/src/vacuum.c index efa8cb141..d89d9b701 100644 --- a/ext/sqlite/libsqlite/src/vacuum.c +++ b/ext/sqlite/libsqlite/src/vacuum.c @@ -14,7 +14,7 @@ ** Most of the code in this file may be omitted by defining the ** SQLITE_OMIT_VACUUM macro. ** -** $Id: vacuum.c,v 1.4.4.1 2005/09/07 15:11:33 iliaa Exp $ +** $Id: vacuum.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" #include "os.h" diff --git a/ext/sqlite/libsqlite/src/vdbe.c b/ext/sqlite/libsqlite/src/vdbe.c index b540bdd22..6b04b9590 100644 --- a/ext/sqlite/libsqlite/src/vdbe.c +++ b/ext/sqlite/libsqlite/src/vdbe.c @@ -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.7.4.1.2.1 2006/09/09 10:59:05 tony2001 Exp $ +** $Id: vdbe.c 219681 2006-09-09 10:59:05Z tony2001 $ */ #include "sqliteInt.h" #include "os.h" diff --git a/ext/sqlite/libsqlite/src/vdbe.h b/ext/sqlite/libsqlite/src/vdbe.h index 71d90786f..553a3354f 100644 --- a/ext/sqlite/libsqlite/src/vdbe.h +++ b/ext/sqlite/libsqlite/src/vdbe.h @@ -15,7 +15,7 @@ ** or VDBE. The VDBE implements an abstract machine that runs a ** simple program to access and modify the underlying database. ** -** $Id: vdbe.h,v 1.5.4.1 2005/09/07 15:11:33 iliaa Exp $ +** $Id: vdbe.h 195361 2005-09-07 15:11:33Z iliaa $ */ #ifndef _SQLITE_VDBE_H_ #define _SQLITE_VDBE_H_ diff --git a/ext/sqlite/libsqlite/src/where.c b/ext/sqlite/libsqlite/src/where.c index 89d689ac8..d9a626f84 100644 --- a/ext/sqlite/libsqlite/src/where.c +++ b/ext/sqlite/libsqlite/src/where.c @@ -12,7 +12,7 @@ ** This module contains C code that generates VDBE code used to process ** the WHERE clause of SQL statements. ** -** $Id: where.c,v 1.6.4.1 2005/09/07 15:11:33 iliaa Exp $ +** $Id: where.c 195361 2005-09-07 15:11:33Z iliaa $ */ #include "sqliteInt.h" |