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