~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

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