~sharan-monikantan/drizzle/crashme

« back to all changes in this revision

Viewing changes to docs/create_index.rst

  • Committer: Brian Aker
  • Date: 2012-06-22 06:48:16 UTC
  • mfrom: (2535.5.17 drizzle-7.1)
  • Revision ID: brian@tangent.org-20120622064816-c1n7dczhxffddlsr
MergeĀ docs.

Show diffs side-by-side

added added

removed removed

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