mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-21 21:41:46 -07:00
Embed pymysql
within the collection and use default test container
This change eliminates the need to install the connector on each controlled node, as `pymysql` version 1.1.1 is now included. As a result, we can safely assume its availability, thus simplifying the testing process. Also, I managed to remove the need for pre-built test containers. We now use the default test containers from ansible-test.
This commit is contained in:
parent
16d530348d
commit
04af62c400
49 changed files with 4392 additions and 979 deletions
32
plugins/module_utils/pymysql/constants/COMMAND.py
Normal file
32
plugins/module_utils/pymysql/constants/COMMAND.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
COM_SLEEP = 0x00
|
||||
COM_QUIT = 0x01
|
||||
COM_INIT_DB = 0x02
|
||||
COM_QUERY = 0x03
|
||||
COM_FIELD_LIST = 0x04
|
||||
COM_CREATE_DB = 0x05
|
||||
COM_DROP_DB = 0x06
|
||||
COM_REFRESH = 0x07
|
||||
COM_SHUTDOWN = 0x08
|
||||
COM_STATISTICS = 0x09
|
||||
COM_PROCESS_INFO = 0x0A
|
||||
COM_CONNECT = 0x0B
|
||||
COM_PROCESS_KILL = 0x0C
|
||||
COM_DEBUG = 0x0D
|
||||
COM_PING = 0x0E
|
||||
COM_TIME = 0x0F
|
||||
COM_DELAYED_INSERT = 0x10
|
||||
COM_CHANGE_USER = 0x11
|
||||
COM_BINLOG_DUMP = 0x12
|
||||
COM_TABLE_DUMP = 0x13
|
||||
COM_CONNECT_OUT = 0x14
|
||||
COM_REGISTER_SLAVE = 0x15
|
||||
COM_STMT_PREPARE = 0x16
|
||||
COM_STMT_EXECUTE = 0x17
|
||||
COM_STMT_SEND_LONG_DATA = 0x18
|
||||
COM_STMT_CLOSE = 0x19
|
||||
COM_STMT_RESET = 0x1A
|
||||
COM_SET_OPTION = 0x1B
|
||||
COM_STMT_FETCH = 0x1C
|
||||
COM_DAEMON = 0x1D
|
||||
COM_BINLOG_DUMP_GTID = 0x1E
|
||||
COM_END = 0x1F
|
Loading…
Add table
Add a link
Reference in a new issue