Function Dictionary

function_dictionary creates the FUNCTIONS dictionary which lists available functions.

Loading

To load this plugin, start drizzled with:

--plugin-add=function_dictionary

See also

Plugin Options for more information about adding and removing plugins.

Examples

List all available functions:

drizzle> SELECT * FROM DATA_DICTIONARY.FUNCTIONS;
+-----------------------+
| FUNCTION_NAME         |
+-----------------------+
| LOWER                 |
| LAST_INSERT_ID        |
| LTRIM                 |
| GREATEST              |
...

Authors

Brian Aker

Version

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'

Changelog

v1.0

  • First release.

Table Of Contents

Previous topic

Filtered Replicator

Next topic

Function Engine

This Page