Hi!
I launched my migration to boost mysql recently. I noticed that due to #187 , the charset is set every time I return a connection to the pool (I have to reset state due to using transactions, most of the time).
This causes SET NAMES 'utf8mb4' to be the number one query in the statistics (this extra operation likely does not cause any noticeable performance hit). But, since MySql 8+ servers already have utf8mb4 as default, is there an easy way to disable that additional SET query?
Thanks in advance