aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordan <dan@noemail.net>2018-04-17 18:16:10 +0000
committerdan <dan@noemail.net>2018-04-17 18:16:10 +0000
commit2cc00423a0696c866c49ea6debc68d83f7da17a8 (patch)
treead58305d2bc5bf5e0a30caf2b35345b32834eb0e /src/sqliteInt.h
parent5015c9b50e19987042ee19a33349b57fd58fd847 (diff)
downloadsqlite-2cc00423a0696c866c49ea6debc68d83f7da17a8.tar.gz
sqlite-2cc00423a0696c866c49ea6debc68d83f7da17a8.zip
Add some more simple test cases for UPSERT. And a minor fix.
FossilOrigin-Name: 27cd3b2fb2ad0cf2b36741bd1057cb7973954d40456e9db158261a38b049d2b5
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 1a5fc5e5a..c0d00270d 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -4293,7 +4293,7 @@ const char *sqlite3JournalModename(int);
void sqlite3UpsertDelete(sqlite3*,Upsert*);
Upsert *sqlite3UpsertDup(sqlite3*,Upsert*);
int sqlite3UpsertAnalyzeTarget(Parse*,SrcList*,Upsert*);
- void sqlite3UpsertDoUpdate(Parse*,Upsert*,Table*,Index*,int,int);
+ void sqlite3UpsertDoUpdate(Parse*,Upsert*,Table*,Index*,int);
#else
#define sqlite3UpsertNew(x,y,z,w) ((Upsert*)0)
#define sqlite3UpsertDelete(x,y)