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