1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Start adding the sqlite3changeset_concat() function to the session module.

FossilOrigin-Name: 8927b2260b8d84f53776cb29e1d2fa41b6b0de0e
This commit is contained in:
dan
2011-04-14 11:16:21 +00:00
parent 9e3fbc0157
commit 5d607a6e06
6 changed files with 660 additions and 66 deletions

View File

@ -522,6 +522,12 @@ int sqlite3changeset_invert(
int *pnOut, void **ppOut /* OUT: Inverse of input */
);
int sqlite3changeset_concat(
int nLeft, void *pLeft, /* Input changeset */
int nRight, void *Right, /* Input changeset */
int *pnOut, void **ppOut /* OUT: Inverse of input */
);
/*
** CAPI3REF: Apply A Changeset To A Database
**