~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_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
Schema Dictionary
 
2
=================
 
3
 
 
4
The :program:`schema_dictionary` provides several DATA_DICTIONARY tables:
 
5
 
 
6
* COLUMNS
 
7
* FOREIGN_KEYS
 
8
* INDEXES
 
9
* INDEX_PARTS
 
10
* SCHEMAS
 
11
* TABLES
 
12
* TABLE_CONSTRAINTS
 
13
 
 
14
.. _schema_dictionary_loading:
 
15
 
 
16
Loading
 
17
-------
 
18
 
 
19
This plugin is loaded by default.
 
20
To stop the plugin from loading by default, start :program:`drizzled`
 
21
with::
 
22
 
 
23
   --plugin-remove=schema_dictionary
 
24
 
 
25
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
 
26
 
 
27
Authors
 
28
-------
 
29
 
 
30
Brian Aker
 
31
 
 
32
.. _schema_dictionary_version:
 
33
 
 
34
Version
 
35
-------
 
36
 
 
37
This documentation applies to **schema_dictionary 1.0**.
 
38
 
 
39
To see which version of the plugin a Drizzle server is running, execute:
 
40
 
 
41
.. code-block:: mysql
 
42
 
 
43
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='schema_dictionary'
 
44
 
 
45
Changelog
 
46
---------
 
47
 
 
48
v1.0
 
49
^^^^
 
50
* First release.