mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
mysql_query: correctly reflect changed status in replace statements (#193)
* mysql_query: correctly reflect changed status in replace statements. * Fix the wrong indent.
This commit is contained in:
parent
0fabb2b77a
commit
9055bb4c8c
5 changed files with 37 additions and 1 deletions
|
@ -255,6 +255,7 @@ Tronde
|
||||||
tvlooy
|
tvlooy
|
||||||
tyll
|
tyll
|
||||||
UncertaintyP
|
UncertaintyP
|
||||||
|
unnecessary-username
|
||||||
vamshi8
|
vamshi8
|
||||||
vanne
|
vanne
|
||||||
vdboor
|
vdboor
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- mysql_query - correctly reflect changed status in replace statements (https://github.com/ansible-collections/community.mysql/pull/193).
|
|
@ -112,7 +112,7 @@ from ansible_collections.community.mysql.plugins.module_utils.mysql import (
|
||||||
)
|
)
|
||||||
from ansible.module_utils._text import to_native
|
from ansible.module_utils._text import to_native
|
||||||
|
|
||||||
DML_QUERY_KEYWORDS = ('INSERT', 'UPDATE', 'DELETE')
|
DML_QUERY_KEYWORDS = ('INSERT', 'UPDATE', 'DELETE', 'REPLACE')
|
||||||
# TRUNCATE is not DDL query but it also returns 0 rows affected:
|
# TRUNCATE is not DDL query but it also returns 0 rows affected:
|
||||||
DDL_QUERY_KEYWORDS = ('CREATE', 'DROP', 'ALTER', 'RENAME', 'TRUNCATE')
|
DDL_QUERY_KEYWORDS = ('CREATE', 'DROP', 'ALTER', 'RENAME', 'TRUNCATE')
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@ test_db: testdb
|
||||||
test_table1: test1
|
test_table1: test1
|
||||||
test_table2: test2
|
test_table2: test2
|
||||||
test_table3: test3
|
test_table3: test3
|
||||||
|
test_table4: test4
|
||||||
test_script_path: /tmp/test.sql
|
test_script_path: /tmp/test.sql
|
||||||
|
|
||||||
user_name_1: 'db_user1'
|
user_name_1: 'db_user1'
|
||||||
|
|
|
@ -289,6 +289,38 @@
|
||||||
- result is failed
|
- result is failed
|
||||||
- result.msg is search('the elements in query list must be strings')
|
- result.msg is search('the elements in query list must be strings')
|
||||||
|
|
||||||
|
- name: Create {{ test_table4 }}
|
||||||
|
mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
login_db: '{{ test_db }}'
|
||||||
|
query: 'CREATE TABLE {{ test_table4 }} (id int primary key, story text)'
|
||||||
|
|
||||||
|
- name: Insert test data using replace statement
|
||||||
|
mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
login_db: '{{ test_db }}'
|
||||||
|
query: "REPLACE INTO {{ test_table4 }} VALUES (1, 'first')"
|
||||||
|
single_transaction: yes
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result is changed
|
||||||
|
- result.rowcount == [1]
|
||||||
|
|
||||||
|
- name: Replace test data
|
||||||
|
mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
login_db: '{{ test_db }}'
|
||||||
|
query: "REPLACE INTO {{ test_table4 }} VALUES (1, 'one')"
|
||||||
|
single_transaction: yes
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result is changed
|
||||||
|
- result.rowcount == [2]
|
||||||
|
|
||||||
- name: Drop db {{ test_db }}
|
- name: Drop db {{ test_db }}
|
||||||
mysql_query:
|
mysql_query:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
|
|
Loading…
Add table
Reference in a new issue