mention MariaDB (#640)

* mention MariaDB

* mention MariaDB in descriptions and notes

* nits

* chmod -x
This commit is contained in:
Robert Silén 2024-05-31 10:14:43 +03:00 committed by GitHub
parent 47610347ba
commit 6c4dca4bce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 28 additions and 18 deletions

View file

@ -10,9 +10,9 @@ __metaclass__ = type
DOCUMENTATION = r'''
---
module: mysql_query
short_description: Run MySQL queries
short_description: Run MySQL or MariaDB queries
description:
- Runs arbitrary MySQL queries.
- Runs arbitrary MySQL or MariaDB queries.
- Pay attention, the module does not support check mode!
All queries will be executed in autocommit mode.
- To run SQL queries from a file, use M(community.mysql.mysql_db) module.
@ -56,6 +56,8 @@ attributes:
support: none
seealso:
- module: community.mysql.mysql_db
notes:
- Compatible with MariaDB or MySQL.
author:
- Andrew Klychkov (@Andersson007)
extends_documentation_fragment: