mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-09-21 14:31:22 -07:00
mysql_user: column_case_sensitive default is set to true (#737)
* mysql_user: column_case_sensitive default is set to true * Update plugins/modules/mysql_user.py Co-authored-by: Laurent Indermühle <laurent.indermuehle@pm.me> --------- Co-authored-by: Laurent Indermühle <laurent.indermuehle@pm.me>
This commit is contained in:
parent
cafbb9100d
commit
fed5f30203
4 changed files with 9 additions and 9 deletions
|
@ -33,6 +33,7 @@
|
|||
password: 'msandbox'
|
||||
priv:
|
||||
'mysql_user_column_case.t1': 'SELECT(a, B, cC, Dd)'
|
||||
column_case_sensitive: false
|
||||
|
||||
- name: Mysql_user Column case sensitive | Assert user privileges are all caps
|
||||
community.mysql.mysql_query:
|
||||
|
|
|
@ -103,6 +103,7 @@
|
|||
name: '{{ user_name_3 }}'
|
||||
priv:
|
||||
'data3.test_table_issue99': 'SELECT (a, b), INSERT (a, b), UPDATE'
|
||||
column_case_sensitive: false
|
||||
register: result
|
||||
|
||||
- name: Priv dict | Assert that grant privs on columns is changed
|
||||
|
@ -116,6 +117,7 @@
|
|||
name: '{{ user_name_3 }}'
|
||||
priv:
|
||||
'data3.test_table_issue99': 'SELECT (a, b), UPDATE, INSERT (b, a)'
|
||||
column_case_sensitive: false
|
||||
register: result
|
||||
|
||||
- name: Priv dict | Assert that grants same privs with different order is not changed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue