You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -280,6 +287,8 @@ Outputs YML file with results and metadata.
280
287
281
288
## Checks
282
289
290
+
> **Number of checks**: 17
291
+
283
292
*`redundant_indices`: reports indices that are redundant and covered by other
284
293
*`non_utf_columns`: reports text columns that have characters encoding set to `latin1` (utf is the way to go)
285
294
*`missing_primary_index`: reports tables with no primary or unique key (see [MySQL bug #76252](https://bugs.mysql.com/bug.php?id=76252) and [Wikia/app#9863](https://github.com/Wikia/app/pull/9863))
@@ -301,6 +310,7 @@ Outputs YML file with results and metadata.
301
310
*`selects_with_like`: reports SELECT queries that use `LIKE '%foo'` conditions (they can not use an index)
302
311
*`insert_ignore`: reports [queries using `INSERT IGNORE`](https://medium.com/legacy-systems-diary/things-to-avoid-episode-1-insert-ignore-535b4c24406b)
303
312
*`select_star`: reports [queries using `SELECT *`](https://github.com/jarulraj/sqlcheck/blob/master/docs/query/3001.md)
313
+
*`having_clause`: reports [queries using `HAVING` clause](https://github.com/jarulraj/sqlcheck/blob/master/docs/query/3012.md)
0 commit comments