diff options
author | drh <> | 2022-02-02 21:06:40 +0000 |
---|---|---|
committer | drh <> | 2022-02-02 21:06:40 +0000 |
commit | 19eef9af64bd20a680d476808c76695d24d26891 (patch) | |
tree | 8d04dff74bd08d57da998e5c06abe35d62259a7d /src | |
parent | 044a017abc5a2322f7ca27350b18a5575e8be631 (diff) | |
download | sqlite-19eef9af64bd20a680d476808c76695d24d26891.tar.gz sqlite-19eef9af64bd20a680d476808c76695d24d26891.zip |
Improvement to the sqlite3_vtab_in_first() documentation.
FossilOrigin-Name: 403e7ac900e53407282393747b784dc0cd4303958394534e3936fce138bc1bc5
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index ead938a7d..42cc33296 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -9721,7 +9721,7 @@ int sqlite3_vtab_in(sqlite3_index_info*, int iCons, int bHandle); ** next call to either of these routines or until the end of the xFilter ** method from which these routines were called. If the virtual table ** implementation needs to retain the *ppOut values for longer, it must make -** copies. +** copies. The *ppOut values are [protected sqlite3_value|protected]. */ int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut); int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut); |