~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 23:31:15 UTC
  • mfrom: (2194.5.7 trunk-bug-723653)
  • mto: This revision was merged to the branch mainline in revision 2197.
  • Revision ID: kalebral@gmail.com-20110223233115-oke1fnvjuu6ujkya
Merge Andrew - 723653: Docs day first pass fixes 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
CREATE INDEX
2
2
============
3
3
 
4
 
CREATE [UNIQUE] INDEX index_name [USING {BTREE | HASH}] ON table_name (column_name [length] [ASC | DESC], ...);
5
 
 
6
 
An example: ::
 
4
.. code-block:: mysql
 
5
 
 
6
   CREATE [UNIQUE] INDEX index_name [USING {BTREE | HASH}] ON table_name (column_name [length] [ASC | DESC], ...);
 
7
 
 
8
An example:
 
9
 
 
10
.. code-block:: mysql
7
11
 
8
12
        CREATE INDEX table_1_index ON table_1 (a,b);
9
13
 
10
14
This would create an index on table_t named table_1_index that converged
11
15
columns a and b.
12
16
 
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'
 
17
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.