Plugins

Plugins provide the majority of Drizzle’s features: functions, system tables, replication, etc. You should familiarize yourself with the Plugin Options and Plugin Documentation.

Default Plugins

Drizzle loads these plugins by default (see --plugin-load):

You can list information about the loaded plugins with:

SELECT * FROM DATA_DICTIONARY.MODULES;

Note to editors: The above list of functions can be regenerated at any time with:

drizzle --silent -e "SELECT CONCAT(' * ', ':ref:\`', MODULE_LIBRARY, '_plugin\` - ', MODULE_DESCRIPTION, ' (', MODULE_LIBRARY, ')')
FROM DATA_DICTIONARY.MODULES ORDER BY MODULE_LIBRARY;"

Table Of Contents

Previous topic

Logging

Next topic

Storage Engines

This Page