~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/create_index.rst

  • Committer: Lee Bieber
  • Date: 2011-02-23 05:05:43 UTC
  • mfrom: (2193.1.2 build)
  • Revision ID: kalebral@gmail.com-20110223050543-w0nhgf512s0137mm
Merge Andrew - 723389: ORDER BY on sys_replication_log table causes InnoDB crash
Merge Marisa - documentation updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
CREATE [UNIQUE] INDEX index_name [USING {BTREE | HASH}] ON table_name (column_name [length] [ASC | DESC], ...);
5
5
 
6
 
An example:
7
 
 
8
 
.. code-block:: mysql
9
 
 
10
 
   CREATE INDEX table_1_index ON table_1 (a,b);
11
 
 
12
 
This would create an index on table_t named  table_1_index that convered
 
6
An example: ::
 
7
 
 
8
        CREATE INDEX table_1_index ON table_1 (a,b);
 
9
 
 
10
This would create an index on table_t named table_1_index that converged
13
11
columns a and b.
14
12
 
15
 
.. todo::
16
 
   
17
 
   how this is implemented currently. i.e. no fast add index
 
13
Fast index creation (where a storage engine can create or drop indexes without copying and rebuilding the contents of the entire table) is not implemented yet for Drizzle, but it is slated for the future.
 
 
b'\\ No newline at end of file'