I am trying out MONyog and think I have found a bug. I was able to reproduce the bug in both the 5.7 stable release and the 6.0 beta release.
In the query analyzer there is the option to replace literals so that similar queries are grouped together. Some of the queries are not being replaced correctly resulting in each query being unique. The bug seems to be related to using hex encoded data for a column.
Simplified example:
Original query:
insert into table (col1, col2, col3) values (‘value1’, ‘value2’, 0x1a4dfd)
Replaced query:
insert into table (col1, col2, col3) values (?, ?, ?x?a?d?d)
The hex blob value has only been partially replaced, causing each query to still be unique. Can anyone reproduce this?