diff options
author | drh <drh@noemail.net> | 2005-04-28 17:18:48 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2005-04-28 17:18:48 +0000 |
commit | 2e66f0b972eeaffc33464370aa5da1beb0c8fe0d (patch) | |
tree | b4cb0f536ef038d9e8ecd83eb73d310758cecbcf /src/sqliteInt.h | |
parent | ee570fa4981a643934850ed9466e97828977bf66 (diff) | |
download | sqlite-2e66f0b972eeaffc33464370aa5da1beb0c8fe0d.tar.gz sqlite-2e66f0b972eeaffc33464370aa5da1beb0c8fe0d.zip |
Enhancements to allow for extensions. (CVS 2448)
FossilOrigin-Name: 6863703abcb2bf31d65792d4de9ae20aba2eadb5
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 8a30b7f36..fdf4a8cdd 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.376 2005/04/22 02:38:38 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.377 2005/04/28 17:18:49 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1570,5 +1570,6 @@ int sqlite3SelectResolve(Parse *, Select *, NameContext *); void sqlite3ColumnDefault(Vdbe *, Table *, int); void sqlite3AlterFinishAddColumn(Parse *, Token *); void sqlite3AlterBeginAddColumn(Parse *, SrcList *); +const char *sqlite3TestErrorName(int); #endif |