mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-19 17:01:26 -07:00
Add MAX_STATEMENT_TIME resource limit (#523)
* Add MAX_STATEMENT_TIME to resource_limits * Move version check for resource_limits to implementations
This commit is contained in:
parent
21e42b5777
commit
526e674e6f
6 changed files with 177 additions and 29 deletions
|
@ -17,3 +17,9 @@ def use_old_user_mgmt(cursor):
|
|||
|
||||
def supports_identified_by_password(cursor):
|
||||
return True
|
||||
|
||||
|
||||
def server_supports_alter_user(cursor):
|
||||
version = get_server_version(cursor)
|
||||
|
||||
return LooseVersion(version) >= LooseVersion("10.2")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue