~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/string_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
String Functions
 
2
================
 
3
 
 
4
The ``string_functions`` plugin provides these :doc:`/functions/overview`:
 
5
 
 
6
* :ref:`elt-function`
 
7
 
 
8
* :ref:`format-function`
 
9
 
 
10
* :ref:`quote-function`
 
11
 
 
12
* :ref:`regex-function`
 
13
 
 
14
.. _string_functions_loading:
 
15
 
 
16
Loading
 
17
-------
 
18
 
 
19
This plugin is loaded by default.  To stop the plugin from loading by
 
20
default, start :program:`drizzled` with::
 
21
 
 
22
   --plugin-remove=string_functions
 
23
 
 
24
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
 
25
 
 
26
.. _string_functions_authors:
 
27
 
 
28
Authors
 
29
-------
 
30
 
 
31
Brian Aker
 
32
 
 
33
.. _string_functions_version:
 
34
 
 
35
Version
 
36
-------
 
37
 
 
38
This documentation applies to **string_functions 1.0**.
 
39
 
 
40
To see which version of the plugin a Drizzle server is running, execute:
 
41
 
 
42
.. code-block:: mysql
 
43
 
 
44
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='string_functions'
 
45
 
 
46
Changelog
 
47
---------
 
48
 
 
49
v1.0
 
50
^^^^
 
51
* First release.