~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 00:54:51 UTC
  • mfrom: (1994.4.96 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2194.
  • Revision ID: kalebral@gmail.com-20110223005451-yqqywil9o7yzt4te
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'