~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/show_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
SHOW Commands
 
2
=============
 
3
 
 
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
 
11
 
 
12
.. _show_dictionary_loading:
 
13
 
 
14
Loading
 
15
-------
 
16
 
 
17
This plugin is loaded by default.
 
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
 
 
43
Changelog
 
44
---------
 
45
 
 
46
v1.0
 
47
^^^^
 
48
* First release.