xref: /netbsd-src/external/public-domain/sqlite/man/SQLITE_INDEX_SCAN_UNIQUE.3 (revision b9988867a8ad969c45a52aa7628bc932ec98d46b)
1.Dd January 24, 2024
2.Dt SQLITE_INDEX_SCAN_UNIQUE 3
3.Os
4.Sh NAME
5.Nm SQLITE_INDEX_SCAN_UNIQUE
6.Nd virtual table scan flags
7.Sh SYNOPSIS
8.In sqlite3.h
9.Fd #define SQLITE_INDEX_SCAN_UNIQUE
10.Sh DESCRIPTION
11Virtual table implementations are allowed to set the sqlite3_index_info.idxFlags
12field to some combination of these bits.
13.Sh IMPLEMENTATION NOTES
14These declarations were extracted from the
15interface documentation at line 7465.
16.Bd -literal
17#define SQLITE_INDEX_SCAN_UNIQUE      1     /* Scan visits at most 1 row */
18.Ed
19.Sh SEE ALSO
20.Xr sqlite3_index_info 3
21