Skip to content

Commit 43eb2a2

Browse files
committed
not_used_tables | update README example
1 parent cf6852e commit 43eb2a2

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,19 @@ not_used_indices → table affected: 0002_not_used_indices
161161
- not_used_index: KEY test_id_idx (test, id)
162162
163163
------------------------------------------------------------
164-
not_used_tables → table affected: 0000_the_table
164+
not_used_tables → table affected: 0020_big_table
165165
166-
✗ "0000_the_table" table was not used by provided queries
166+
✗ "0020_big_table" table was not used by provided queries
167+
168+
- schema: CREATE TABLE `0020_big_table` (
169+
`id` int(9) NOT NULL AUTO_INCREMENT,
170+
`val` int(9) NOT NULL,
171+
`text` char(5) NOT NULL,
172+
PRIMARY KEY (`id`),
173+
KEY `text_idx` (`text`)
174+
) ENGINE=InnoDB AUTO_INCREMENT=100001 DEFAULT CHARSET=utf8
175+
- table_size_mb: 5.03125
176+
- rows_estimated: 100405
167177
168178
------------------------------------------------------------
169179
insert_ignore → table affected: 0070_insert_ignore

0 commit comments

Comments
 (0)