diff options
author | drh <drh@noemail.net> | 2014-08-21 16:09:36 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-08-21 16:09:36 +0000 |
commit | 2571e4eddd05dceb9c707e8356153d0836d84228 (patch) | |
tree | 323ddb8b65cd40629b860f2b64cd1fb71efd023a /src/test_intarray.h | |
parent | 3a432b0b475fa5ae550a1ab35279c2647344138c (diff) | |
parent | b6b4b79f344096791542265763467fc90f139c2e (diff) | |
download | sqlite-2571e4eddd05dceb9c707e8356153d0836d84228.tar.gz sqlite-2571e4eddd05dceb9c707e8356153d0836d84228.zip |
Merge all recent trunk changes, especially the fix for
ticket [369d57fb8e5ccdff06f1], but also the skip-scan improvement and
performance improvements in the b-tree code.
FossilOrigin-Name: 0b9e2c3269695713b538561d999c68097db70f0c
Diffstat (limited to 'src/test_intarray.h')
-rw-r--r-- | src/test_intarray.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test_intarray.h b/src/test_intarray.h index 6d26235a8..84b1f3fe6 100644 --- a/src/test_intarray.h +++ b/src/test_intarray.h @@ -102,7 +102,7 @@ typedef struct sqlite3_intarray sqlite3_intarray; ** explicitly by the application, the virtual table will be dropped implicitly ** by the system when the database connection is closed. */ -int sqlite3_intarray_create( +SQLITE_API int sqlite3_intarray_create( sqlite3 *db, const char *zName, sqlite3_intarray **ppReturn @@ -115,7 +115,7 @@ int sqlite3_intarray_create( ** any query against the corresponding virtual table. If the integer ** array does change or is deallocated undefined behavior will result. */ -int sqlite3_intarray_bind( +SQLITE_API int sqlite3_intarray_bind( sqlite3_intarray *pIntArray, /* The intarray object to bind to */ int nElements, /* Number of elements in the intarray */ sqlite3_int64 *aElements, /* Content of the intarray */ |