private bool Equals(MySqlCompiledQueryCacheKey other) => _relationalCompiledQueryCacheKey.Equals(other._relationalCompiledQueryCacheKey) && Equals(_serverVersion, other._serverVersion) && _nullableCharSetBehavior.GetValueOrDefault() == other._nullableCharSetBehavior.GetValueOrDefault() && Equals(_charSet, other._charSet) && _noBackslashEscapes == other._noBackslashEscapes ;
private bool Equals(MySqlCompiledQueryCacheKey other) => _relationalCompiledQueryCacheKey.Equals(other._relationalCompiledQueryCacheKey) && Equals(_serverVersion, other._serverVersion) && Equals(_charSet, other._charSet) && _noBackslashEscapes == other._noBackslashEscapes ;
private bool Equals(MySqlCompiledQueryCacheKey other) => _relationalCompiledQueryCacheKey.Equals(other._relationalCompiledQueryCacheKey) && _useRowNumberOffset == other._useRowNumberOffset;