Docs: Fix description of output field NON_UNIQUE for statement SHOW INDEXES

This commit is contained in:
Robert Schulze 2023-07-04 15:50:56 +00:00
parent 93804788de
commit 59928cb485
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -283,7 +283,7 @@ The optional keyword `EXTENDED` currently has no effect, it only exists for MySQ
`SHOW INDEX` produces a result table with the following structure:
- table - The name of the table (String)
- non_unique - 0 if the index can contain duplicates, 1 otherwise (UInt8)
- non_unique - 0 if the index cannot contain duplicates, 1 otherwise (UInt8)
- key_name - The name of the index, `PRIMARY` if the index is a primary key index (String)
- seq_in_index - Currently unused
- column_name - Currently unused