~drizzle-trunk/drizzle/development

2397.1.1 by Daniel Nichter
Skeleton documentation for all plugins, more complete docu for first half of plugins.
1
SHOW Commands
2
=============
3
2397.1.3 by Daniel Nichter
Complete documenting 2nd half of plugins.
4
The :program:`show_dictionary` plugin provides these SHOW commands:
5
6
* SHOW COLUMNS
7
* SHOW INDEXES
8
* SHOW SCHEMAS
9
* SHOW [TEMPORARY] TABLES
10
* SHOW TABLE STATUS
2397.1.1 by Daniel Nichter
Skeleton documentation for all plugins, more complete docu for first half of plugins.
11
12
.. _show_dictionary_loading:
13
14
Loading
15
-------
16
2397.1.3 by Daniel Nichter
Complete documenting 2nd half of plugins.
17
This plugin is loaded by default.
2397.1.1 by Daniel Nichter
Skeleton documentation for all plugins, more complete docu for first half of plugins.
18
To stop the plugin from loading by default, start :program:`drizzled`
19
with::
20
21
   --plugin-remove=show_dictionary
22
23
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
24
25
Authors
26
-------
27
28
Brian Aker
29
30
.. _show_dictionary_version:
31
32
Version
33
-------
34
35
This documentation applies to **show_dictionary 1.0**.
36
37
To see which version of the plugin a Drizzle server is running, execute:
38
39
.. code-block:: mysql
40
41
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='show_dictionary'
42
2397.1.3 by Daniel Nichter
Complete documenting 2nd half of plugins.
43
Changelog
44
---------
45
46
v1.0
47
^^^^
48
* First release.