.Dd April 29, 2026 .Dt SQLITE_INDEX_SCAN_UNIQUE 3 .Os .Sh NAME .Nm SQLITE_INDEX_SCAN_UNIQUE , .Nm SQLITE_INDEX_SCAN_HEX .Nd virtual table scan flags .Sh SYNOPSIS .In sqlite3.h .Fd #define SQLITE_INDEX_SCAN_UNIQUE .Fd #define SQLITE_INDEX_SCAN_HEX .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 7863. .Bd -literal #define SQLITE_INDEX_SCAN_UNIQUE 0x00000001 /* Scan visits at most 1 row */ #define SQLITE_INDEX_SCAN_HEX 0x00000002 /* Display idxNum as hex */ /* in EXPLAIN QUERY PLAN */ .Ed .Sh SEE ALSO .Xr sqlite3_index_info 3