vain0x
vain0x
I've encountered this issue with a MySQL server that is configured to use `utf8` charset (not `utf8mb4`) for historical reason. My workaround is to add an entry `utf8mb3: 45` to...
I guess `charset_encodings.js` can be unchanged because the inversion mapping (`45 -> utf8`) is already there.
It seems system variable `character_set_client` is set for some reason in my case. Small repro is: ```js await conn.execute("SET @@character_set_client = 'utf8mb3'") await conn.execute("SELECT 'something'") // throws ``` Self-contained version...