aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2002-02-02 18:49:19 +0000
committerdrh <drh@noemail.net>2002-02-02 18:49:19 +0000
commit663fc63a776083ed68df33d65d11a0d612a2d542 (patch)
treec1f189d0821085f7d14f990722b5a44ac38aea3a /src/sqliteInt.h
parentfa86c4127d2a893079adeddeef55a9cac5d52be7 (diff)
downloadsqlite-663fc63a776083ed68df33d65d11a0d612a2d542.tar.gz
sqlite-663fc63a776083ed68df33d65d11a0d612a2d542.zip
Get the ABORT conflict resolution algorithm working. (CVS 362)
FossilOrigin-Name: 9be4d4c6f12056782966396dca0b8e2d384d0cf2
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index eb4630efb..9a095b33f 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
-** @(#) $Id: sqliteInt.h,v 1.83 2002/01/31 15:54:22 drh Exp $
+** @(#) $Id: sqliteInt.h,v 1.84 2002/02/02 18:49:21 drh Exp $
*/
#include "sqlite.h"
#include "hash.h"
@@ -565,4 +565,5 @@ void sqliteGenerateRowIndexDelete(Vdbe*, Table*, int, char*);
void sqliteGenerateConstraintChecks(Parse*,Table*,int,char*,int,int,int,int);
void sqliteCompleteInsertion(Parse*, Table*, int, char*, int, int);
void sqliteBeginWriteOperation(Parse*);
+void sqliteBeginMultiWriteOperation(Parse*);
void sqliteEndWriteOperation(Parse*);