4
CREATE [UNIQUE] INDEX index_name [USING {BTREE | HASH}] ON table_name (column_name [length] [ASC | DESC], ...);
6
CREATE [UNIQUE] INDEX index_name [USING {BTREE | HASH}] ON table_name (column_name [length] [ASC | DESC], ...);
8
10
.. code-block:: mysql
10
CREATE INDEX table_1_index ON table_1 (a,b);
12
CREATE INDEX table_1_index ON table_1 (a,b);
12
This would create an index on table_t named table_1_index that convered
14
This would create an index on table_t named table_1_index that converged
17
how this is implemented currently. i.e. no fast add index
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.