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

« back to all changes in this revision

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