You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an improvement over #445 .
In #445 , a new global variable mysql-client_found_rows was added, and it defaults to true to work with ORM likes SQLAlchemy and django .
ProxySQL can be more granular and have CLIENT_FOUND_ROWS enabled or disabled on a per user basis.
Note: according to the documentation, COM_CHANGE_USER doesn't allow to change capabilities, therefore CLIENT_FOUND_ROWS cannot be changed on an already established connection.
To implement this feature, we first need to enhance the connection pool in order to try to find a connection with the closest attributes possible, like for example same user.
The text was updated successfully, but these errors were encountered:
This is an improvement over #445 .
In #445 , a new global variable
mysql-client_found_rows
was added, and it defaults totrue
to work with ORM likes SQLAlchemy and django .ProxySQL can be more granular and have
CLIENT_FOUND_ROWS
enabled or disabled on a per user basis.Note: according to the documentation, COM_CHANGE_USER doesn't allow to change capabilities, therefore
CLIENT_FOUND_ROWS
cannot be changed on an already established connection.To implement this feature, we first need to enhance the connection pool in order to try to find a connection with the closest attributes possible, like for example same user.
The text was updated successfully, but these errors were encountered: