~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/create_index.rst

  • Committer: Andrew Hutchings
  • Date: 2011-02-02 12:51:57 UTC
  • mto: (2157.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2158.
  • Revision ID: andrew@linuxjedi.co.uk-20110202125157-r6thh7ox4g9l90ec
Make transaction_message_threshold a read-only global variable instead of a per-session variable
Make replication_dictionary column lengths use transation_message_threshold

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
An example:
7
7
 
8
 
.. code-block:: mysql
9
 
 
10
 
   CREATE INDEX table_1_index ON table_1 (a,b);
 
8
CREATE INDEX table_1_index ON table_1 (a,b);
11
9
 
12
10
This would create an index on table_t named  table_1_index that convered
13
11
columns a and b.
14
12
 
15
 
.. todo::
16
 
   
17
 
   how this is implemented currently. i.e. no fast add index
 
13
FIXME: how this is implemented currently. i.e. no fast add index