~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Daniel Nichter
  • Date: 2011-10-23 16:01:37 UTC
  • mto: This revision was merged to the branch mainline in revision 2448.
  • Revision ID: daniel@percona.com-20111023160137-7ac3blgz8z4tf8za
Add Administration Getting Started and Logging.  Capitalize SQL clause keywords.

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.