iliaa Thu May 7 12:41:26 2009 UTC
Modified files:
/php-src/ext/sqlite3/libsqlite sqlite3.c
Log:
MFB: fixed compiler warning
http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/libsqlite/sqlite3.c?r1=1.21&r2=1.22&diff_format=u
Index: php-src/ext/sqlite3/libsqlite/sqlite3.c
diff -u php-src/ext/sqlite3/libsqlite/sqlite3.c:1.21
php-src/ext/sqlite3/libsqlite/sqlite3.c:1.22
--- php-src/ext/sqlite3/libsqlite/sqlite3.c:1.21 Thu May 7 11:24:18 2009
+++ php-src/ext/sqlite3/libsqlite/sqlite3.c Thu May 7 12:41:25 2009
@@ -45,7 +45,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -74,7 +74,7 @@
**
** This file defines various limits of what SQLite can process.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -532,7 +532,7 @@
** the version number) and changes its name to "sqlite3.h" as
** part of the build process.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _SQLITE3_H_
#define _SQLITE3_H_
@@ -6052,7 +6052,7 @@
** This is the header file for the generic hash-table implemenation
** used in SQLite.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _SQLITE_HASH_H_
#define _SQLITE_HASH_H_
@@ -6635,7 +6635,7 @@
** subsystem. See comments in the source code for a detailed description
** of what each interface routine does.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _BTREE_H_
#define _BTREE_H_
@@ -6867,7 +6867,7 @@
** or VDBE. The VDBE implements an abstract machine that runs a
** simple program to access and modify the underlying database.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _SQLITE_VDBE_H_
#define _SQLITE_VDBE_H_
@@ -7259,7 +7259,7 @@
** subsystem. The page cache subsystem reads and writes a file a page
** at a time and provides a journal for rollback.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _PAGER_H_
@@ -7427,7 +7427,7 @@
** This header file defines the interface that the sqlite page cache
** subsystem.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _PCACHE_H_
@@ -7595,7 +7595,7 @@
** This header file is #include-ed by sqliteInt.h and thus ends up
** being included by every source file.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _SQLITE_OS_H_
#define _SQLITE_OS_H_
@@ -7655,6 +7655,7 @@
# define SQLITE_OS_WINCE 0
#endif
+#include <ctype.h>
/*
** Define the maximum size of a temporary filename
@@ -7870,7 +7871,7 @@
** Source files should #include the sqliteInt.h file and let that file
** include this one indirectly.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -10184,7 +10185,7 @@
**
** This file contains definitions of global variables and contants.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -10377,7 +10378,7 @@
** This module implements the sqlite3_status() interface and related
** functionality.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -10504,7 +10505,7 @@
** sqlite3RegisterDateTimeFunctions() found at the bottom of the file.
** All other code has file scope.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
**
** SQLite processes all times and dates as Julian Day numbers. The
** dates and times are stored as the number of days since noon
@@ -11609,7 +11610,7 @@
** This file contains OS interface code that is common to all
** architectures.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#define _SQLITE_OS_C_ 1
#undef _SQLITE_OS_C_
@@ -11889,7 +11890,7 @@
**
*************************************************************************
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -11988,7 +11989,7 @@
** are merely placeholders. Real drivers must be substituted using
** sqlite3_config() before SQLite will operate.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -12052,7 +12053,7 @@
** This file contains implementations of the low-level memory allocation
** routines specified in the sqlite3_mem_methods object.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -12201,7 +12202,7 @@
** This file contains implementations of the low-level memory allocation
** routines specified in the sqlite3_mem_methods object.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -12650,7 +12651,7 @@
** This version of the memory allocation subsystem is included
** in the build only if SQLITE_ENABLE_MEMSYS3 is defined.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -13340,7 +13341,7 @@
** This version of the memory allocation subsystem is included
** in the build only if SQLITE_ENABLE_MEMSYS5 is defined.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -13821,7 +13822,7 @@
** This file contains code that is common across all mutex implementations.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef SQLITE_MUTEX_OMIT
@@ -13983,7 +13984,7 @@
** that does error checking on mutexes to make sure they are being
** called correctly.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -14157,7 +14158,7 @@
*************************************************************************
** This file contains the C functions that implement mutexes for OS/2
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -14432,7 +14433,7 @@
*************************************************************************
** This file contains the C functions that implement mutexes for pthreads
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -14762,7 +14763,7 @@
*************************************************************************
** This file contains the C functions that implement mutexes for win32
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -15021,7 +15022,7 @@
**
** Memory allocation functions used throughout sqlite.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -15733,7 +15734,7 @@
** an historical reference. Most of the "enhancements" have been backed
** out so that the functionality is now the same as standard printf().
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
**
**************************************************************************
**
@@ -16700,7 +16701,7 @@
** Random numbers are used by some of the database backends in order
** to generate random integer keys for tables or random filenames.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -16846,7 +16847,7 @@
** This file contains routines used to translate between UTF-8,
** UTF-16, UTF-16BE, and UTF-16LE.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
**
** Notes on UTF-8:
**
@@ -16888,7 +16889,7 @@
** 6000 lines long) it was split up into several smaller files and
** this header information was factored out.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _VDBEINT_H_
#define _VDBEINT_H_
@@ -17800,7 +17801,7 @@
** This file contains functions for allocating memory, comparing
** strings, and stuff like that.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifdef SQLITE_HAVE_ISNAN
# include <math.h>
@@ -18850,7 +18851,7 @@
** This is the implementation of generic hash-tables
** used in SQLite.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/* Turn bulk memory into a hash table object by initializing the
@@ -19286,7 +19287,7 @@
**
** This file contains code that is specific to OS/2.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -19349,7 +19350,7 @@
** This file should be #included by the os_*.c files only. It is not a
** general purpose header file.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _OS_COMMON_H_
#define _OS_COMMON_H_
@@ -19411,7 +19412,7 @@
** This file contains inline asm code for retrieving "high-performance"
** counters for x86 class CPUs.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _HWTIME_H_
#define _HWTIME_H_
@@ -20669,7 +20670,7 @@
** * Definitions of sqlite3_vfs objects for all locking methods
** plus implementations of sqlite3_os_init() and sqlite3_os_end().
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#if SQLITE_OS_UNIX /* This file is used on unix only */
@@ -20865,7 +20866,7 @@
** This file should be #included by the os_*.c files only. It is not a
** general purpose header file.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _OS_COMMON_H_
#define _OS_COMMON_H_
@@ -20927,7 +20928,7 @@
** This file contains inline asm code for retrieving "high-performance"
** counters for x86 class CPUs.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _HWTIME_H_
#define _HWTIME_H_
@@ -26004,7 +26005,7 @@
**
** This file contains code that is specific to windows.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#if SQLITE_OS_WIN /* This file is used for windows only */
@@ -26072,7 +26073,7 @@
** This file should be #included by the os_*.c files only. It is not a
** general purpose header file.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _OS_COMMON_H_
#define _OS_COMMON_H_
@@ -26134,7 +26135,7 @@
** This file contains inline asm code for retrieving "high-performance"
** counters for x86 class CPUs.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _HWTIME_H_
#define _HWTIME_H_
@@ -28129,7 +28130,7 @@
** start of a transaction, and is thus usually less than a few thousand,
** but can be as large as 2 billion for a really big database.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/* Size of the Bitvec structure in bytes. */
@@ -28504,7 +28505,7 @@
*************************************************************************
** This file implements that page cache.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -29093,7 +29094,7 @@
** If the default page cache implementation is overriden, then neither of
** these two features are available.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -29891,7 +29892,7 @@
** There is an added cost of O(N) when switching between TEST and
** SMALLEST primitives.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -30275,7 +30276,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef SQLITE_OMIT_DISKIO
@@ -35539,7 +35540,7 @@
**
*************************************************************************
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
**
** This file contains code used to implement mutexes on Btree objects.
** This code really belongs in btree.c. But btree.c is getting too
@@ -35559,7 +35560,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
**
** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to
@@ -36539,7 +36540,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
**
** This file implements a external (disk-based) database using BTrees.
** See the header comment on "btreeInt.h" for additional information.
@@ -44240,7 +44241,7 @@
** This file contains the implementation of the sqlite3_backup_XXX()
** API functions and the related features.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/* Macro to find the minimum of two numeric values.
@@ -44855,7 +44856,7 @@
** only within the VDBE. Interface routines refer to a Mem using the
** name sqlite_value
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -45914,7 +45915,7 @@
** 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.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -48607,7 +48608,7 @@
** This file contains code use to implement APIs that are part of the
** VDBE.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#if 0 && defined(SQLITE_ENABLE_MEMORY_MANAGEMENT)
@@ -49986,7 +49987,7 @@
** in this file for details. If in doubt, do not deviate from existing
** commenting and indentation practices when changing or adding code.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -50415,7 +50416,7 @@
** This file contains inline asm code for retrieving "high-performance"
** counters for x86 class CPUs.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _HWTIME_H_
#define _HWTIME_H_
@@ -55501,7 +55502,7 @@
**
** This file contains code used to implement incremental BLOB I/O.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -55850,7 +55851,7 @@
**
*************************************************************************
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifdef SQLITE_ENABLE_ATOMIC_WRITE
@@ -56096,7 +56097,7 @@
** The in-memory rollback journal is used to journal transactions for
** ":memory:" databases and when the journal_mode=MEMORY pragma is used.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/* Forward references to internal structures */
@@ -56355,7 +56356,7 @@
** This file contains routines used for walking the parser tree for
** an SQL statement.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -56496,7 +56497,7 @@
** resolve all identifiers by associating them with a particular
** table and column.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -57670,7 +57671,7 @@
** This file contains routines used for analyzing expressions and
** for generating VDBE code that evaluates expressions in SQLite.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -61064,7 +61065,7 @@
** This file contains C code routines that used to generate VDBE code
** that implements the ALTER TABLE command.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -61694,7 +61695,7 @@
*************************************************************************
** This file contains code associated with the ANALYZE command.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef SQLITE_OMIT_ANALYZE
@@ -62128,7 +62129,7 @@
*************************************************************************
** This file contains code used to implement the ATTACH and DETACH commands.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef SQLITE_OMIT_ATTACH
@@ -62671,7 +62672,7 @@
** systems that do not need this facility may omit it by recompiling
** the library with -DSQLITE_OMIT_AUTHORIZATION=1
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -62916,7 +62917,7 @@
** COMMIT
** ROLLBACK
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -66563,7 +66564,7 @@
** This file contains functions used to access the internal hash tables
** of user defined functions and collation sequences.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -67017,7 +67018,7 @@
** This file contains C code routines that are called by the parser
** in order to generate code for DELETE FROM statements.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -67635,7 +67636,7 @@
** sqliteRegisterBuildinFunctions() found at the bottom of the file.
** All other code has file scope.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -69108,7 +69109,7 @@
** This file contains C code routines that are called by the parser
** to handle INSERT statements in SQLite.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -70872,7 +70873,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -71015,7 +71016,7 @@
** This file contains code used to dynamically load extensions into
** the SQLite library.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef SQLITE_CORE
@@ -71040,7 +71041,7 @@
** as extensions by SQLite should #include this file instead of
** sqlite3.h.
**
-** @(#) $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef _SQLITE3EXT_H_
#define _SQLITE3EXT_H_
@@ -72001,7 +72002,7 @@
*************************************************************************
** This file contains code used to implement the PRAGMA command.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/* Ignore this whole file if pragmas are disabled
@@ -73435,7 +73436,7 @@
** interface, and routines that contribute to loading the database schema
** from disk.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -74267,7 +74268,7 @@
** This file contains C code routines that are called by the parser
** to handle SELECT statements in SQLite.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
@@ -78544,7 +78545,7 @@
** These routines are in a separate files so that they will not be linked
** if they are not used.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef SQLITE_OMIT_GET_TABLE
@@ -78737,7 +78738,7 @@
*************************************************************************
**
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef SQLITE_OMIT_TRIGGER
@@ -79615,7 +79616,7 @@
** This file contains C code routines that are called by the parser
** to handle UPDATE statements.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef SQLITE_OMIT_VIRTUALTABLE
@@ -80304,7 +80305,7 @@
** Most of the code in this file may be omitted by defining the
** SQLITE_OMIT_VACUUM macro.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#if !defined(SQLITE_OMIT_VACUUM) && !defined(SQLITE_OMIT_ATTACH)
@@ -80604,7 +80605,7 @@
*************************************************************************
** This file contains code used to help implement virtual tables.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef SQLITE_OMIT_VIRTUALTABLE
@@ -81463,7 +81464,7 @@
** so is applicable. Because this module is responsible for selecting
** indices, you might also think of this module as the "query optimizer".
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -88310,7 +88311,7 @@
** individual tokens and sends those tokens one-by-one over to the
** parser for analysis.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/*
@@ -88363,7 +88364,7 @@
**
** The code in this file has been automatically generated by
**
-** $Header: /repository/php-src/ext/sqlite3/libsqlite/sqlite3.c,v 1.21
2009/05/07 11:24:18 scottmac Exp $
+** $Header: /repository/php-src/ext/sqlite3/libsqlite/sqlite3.c,v 1.22
2009/05/07 12:41:25 iliaa Exp $
**
** The code in this file implements a function that determines whether
** or not a given identifier is really an SQL keyword. The same thing
@@ -89105,7 +89106,7 @@
** separating it out, the code will be automatically omitted from
** static links that do not use it.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifndef SQLITE_OMIT_COMPLETE
@@ -89382,7 +89383,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#ifdef SQLITE_ENABLE_FTS3
@@ -91672,7 +91673,7 @@
** This file contains the implementation of the sqlite3_unlock_notify()
** API method and its associated functionality.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
/* Omit this entire file if SQLITE_ENABLE_UNLOCK_NOTIFY is not defined. */
@@ -101884,7 +101885,7 @@
** This file contains code for implementations of the r-tree and r*-tree
** algorithms packaged as an SQLite virtual table module.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_RTREE)
@@ -104739,7 +104740,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
**
** This file implements an integration between the ICU library
** ("International Components for Unicode", an open-source library
@@ -105240,7 +105241,7 @@
*************************************************************************
** This file implements a tokenizer for fts3 based on the ICU library.
**
-** $Id: sqlite3.c,v 1.21 2009/05/07 11:24:18 scottmac Exp $
+** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
*/
#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3)
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php