function_dictionary creates the FUNCTIONS dictionary which lists available functions.
To load this plugin, start drizzled with:
--plugin-add=function_dictionary
See also
Plugin Options for more information about adding and removing plugins.
List all available functions:
drizzle> SELECT * FROM DATA_DICTIONARY.FUNCTIONS;
+-----------------------+
| FUNCTION_NAME |
+-----------------------+
| LOWER |
| LAST_INSERT_ID |
| LTRIM |
| GREATEST |
...
Brian Aker
This documentation applies to function_dictionary 1.0.
To see which version of the plugin a Drizzle server is running, execute:
SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='function_dictionary'