Navigation Menu

Skip to content

Commit

Permalink
[storage][multiple-column-index] fix index type: Text -> ShortText.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Sep 23, 2011
1 parent 2f62ba5 commit 5ba66cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ha_mroonga.cc
Expand Up @@ -1531,7 +1531,7 @@ int ha_mroonga::storage_create(const char *name, TABLE *table,
grn_builtin_type groonga_type = mrn_get_type(ctx, mysql_field_type);
index_type = grn_ctx_at(ctx, groonga_type);
} else {
index_type = grn_ctx_at(ctx, GRN_DB_TEXT);
index_type = grn_ctx_at(ctx, GRN_DB_SHORT_TEXT);
}

mrn_index_table_name_gen(tbl_name, key_info.name, idx_name);
Expand Down

0 comments on commit 5ba66cb

Please sign in to comment.