.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