~vjsamuel/drizzle/fix-bug-850898

« back to all changes in this revision

Viewing changes to plugin/trigger_dictionary/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
Trigger Dictionary
 
2
==================
 
3
 
 
4
The :program:`trigger_dictionary` provides the DATA_DICTIONARY.EVENT_OBSERVERS table which lists loaded event observer plugins.
 
5
 
 
6
.. _trigger_dictionary_loading:
 
7
 
 
8
Loading
 
9
-------
 
10
 
 
11
To load this plugin, start :program:`drizzled` with::
 
12
 
 
13
   --plugin-add=trigger_dictionary
 
14
 
 
15
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
 
16
 
 
17
Examples
 
18
--------
 
19
 
 
20
 
 
21
If the :doc:`/plugins/query_log/index` plugin is loaded, then the
 
22
DATA_DICTIONARY.EVENT_OBSERVERS table should list it:
 
23
 
 
24
.. code-block:: mysql
 
25
 
 
26
   drizzle> SELECT * FROM DATA_DICTIONARY.EVENT_OBSERVERS;
 
27
   +---------------------+
 
28
   | EVENT_OBSERVER_NAME |
 
29
   +---------------------+
 
30
   | query_log           | 
 
31
   +---------------------+
 
32
 
 
33
.. _trigger_dictionary_authors:
 
34
 
 
35
Authors
 
36
-------
 
37
 
 
38
Brian Aker
 
39
 
 
40
.. _trigger_dictionary_version:
 
41
 
 
42
Version
 
43
-------
 
44
 
 
45
This documentation applies to **trigger_dictionary 1.0**.
 
46
 
 
47
To see which version of the plugin a Drizzle server is running, execute:
 
48
 
 
49
.. code-block:: mysql
 
50
 
 
51
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='trigger_dictionary'
 
52
 
 
53
Changelog
 
54
---------
 
55
 
 
56
v1.0
 
57
^^^^
 
58
* First release.