Am 04.02.2018 um 10:08 schrieb Nick Sabalausky:

mysql-native's Connection contains the following methods which have been
there for ages:

/// Used by Vibe.d's ConnectionPool, ignore this.
void acquire() { if( socket ) socket.acquire(); }
///ditto
void release() { if( socket ) socket.release(); }
///ditto
bool isOwner() { return socket ? socket.isOwner() : false; }
///ditto
bool amOwner() { return socket ? socket.isOwner() : false; }

Are these still relevent, or can they be removed?

Sorry for the late answer, but you are right, they are just legacy code.