~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/utility_functions/docs/index.rst

  • Committer: Mark Atwood
  • Date: 2011-09-13 19:54:55 UTC
  • mfrom: (2397.1.3 plugin-docs)
  • Revision ID: me@mark.atwood.name-20110913195455-3bk3locm85m4jimp
mergeĀ lp:~daniel-nichter/drizzle/plugin-docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Utility Functions
 
2
=================
 
3
 
 
4
The ``utility_functions`` plugin provides these :doc:`/functions/overview`:
 
5
 
 
6
* :ref:`assert-function`
 
7
 
 
8
* :ref:`bit-count-function`
 
9
 
 
10
* :ref:`catalog-function`
 
11
 
 
12
* :ref:`execute-function`
 
13
 
 
14
* :ref:`global-read-lock-function`
 
15
 
 
16
* :ref:`result-type-function`
 
17
 
 
18
* :ref:`kill-function`
 
19
 
 
20
* :ref:`database-function`
 
21
 
 
22
* :ref:`typeof-function`
 
23
 
 
24
* :ref:`user-function`
 
25
 
 
26
.. _utility_functions_loading:
 
27
 
 
28
Loading
 
29
-------
 
30
 
 
31
This plugin is loaded by default.  To stop the plugin from loading by
 
32
default, start :program:`drizzled` with::
 
33
 
 
34
   --plugin-remove=utility_functions
 
35
 
 
36
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
 
37
 
 
38
.. _utility_functions_authors:
 
39
 
 
40
Authors
 
41
-------
 
42
 
 
43
Brian Aker
 
44
 
 
45
.. _utility_functions_version:
 
46
 
 
47
Version
 
48
-------
 
49
 
 
50
This documentation applies to **utility_functions 1.4**.
 
51
 
 
52
To see which version of the plugin a Drizzle server is running, execute:
 
53
 
 
54
.. code-block:: mysql
 
55
 
 
56
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='utility_functions'
 
57
 
 
58
Changelog
 
59
---------
 
60
 
 
61
v1.4
 
62
^^^^
 
63
* First release.