1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Also export the sqlite3changeset interfaces in the amalgamated version of

the sessions extension.

FossilOrigin-Name: 5b399f2bc43612c52ea2289001d852d7ba6f9750
This commit is contained in:
drh
2013-03-19 17:10:10 +00:00
parent e191e2c6d0
commit 1ffe7c7fab
5 changed files with 13 additions and 13 deletions

View File

@ -1125,7 +1125,7 @@ int sqlite3session_create(
** Free the list of table objects passed as the first argument. The contents
** of the changed-rows hash tables are also deleted.
*/
void sessionDeleteTable(SessionTable *pList){
static void sessionDeleteTable(SessionTable *pList){
SessionTable *pNext;
SessionTable *pTab;
@ -3074,7 +3074,7 @@ static int sessionChangeMerge(
** Add all changes in the changeset passed via the first two arguments to
** hash tables.
*/
int sessionConcatChangeset(
static int sessionConcatChangeset(
int nChangeset, /* Number of bytes in pChangeset */
void *pChangeset, /* Changeset buffer */
SessionTable **ppTabList /* IN/OUT: List of table objects */