Hey!
Is it currently possible to delegate authentication to a backend MySQL server rather than validating credentials locally?
I would like to forward my go-mysql server authentication to an upstream server instead of storing/checking credentials in the proxy itself. The challenge I see is that the salt is generated in NewCustomizedConn before I have a chance to connect to the backend and use its salt.
If this isn't currently supported, how would you recommend approaching this? Happy to contribute a PR if there's a preferred direction. :)