~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/function_engine/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
Function Engine
 
2
===============
 
3
 
 
4
:program:`function_engine` is a low-level plugin that provides the
 
5
interface for other function plugins.
 
6
 
 
7
.. warning::
 
8
 
 
9
   Drizzle depends on the :program:`function_engine` plugin.  If it is not
 
10
   loaded, most commands will not work and ``DATA_DICTIONARY`` and
 
11
   ``INFORMATION_SCHEMA`` will not be available.
 
12
 
 
13
.. _function_engine_loading:
 
14
 
 
15
Loading
 
16
-------
 
17
 
 
18
This plugin is loaded by default and it should not be unloaded.  See the
 
19
warning above.
 
20
 
 
21
 
 
22
Authors
 
23
-------
 
24
 
 
25
Brian Aker
 
26
 
 
27
.. _function_engine_version:
 
28
 
 
29
Version
 
30
-------
 
31
 
 
32
This documentation applies to **function_engine 1.0**.
 
33
 
 
34
To see which version of the plugin a Drizzle server is running, execute:
 
35
 
 
36
.. code-block:: mysql
 
37
 
 
38
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='function_engine'
 
39
 
 
40
Changelog
 
41
---------
 
42
 
 
43
v1.0
 
44
^^^^
 
45
* First release.