~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

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