1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fixed indention, removed compiler varnings and fixed a bug

in FULLTEXT indexes.
This commit is contained in:
monty@donna.mysql.com
2000-09-29 00:58:16 +03:00
parent 17dec8eadd
commit 02fd65b970
21 changed files with 372 additions and 361 deletions

View File

@ -753,13 +753,11 @@ store_create_info(THD *thd, TABLE *table, String* packet)
for (uint j=0 ; j < key_info->key_parts ; j++,key_part++)
{
if(j)
if (j)
packet->append(',');
if(key_part->field)
if (key_part->field)
packet->append(key_part->field->field_name);
KEY *key=table->key_info+i;
if (!key_part->field ||
(key_part->length !=
table->field[key_part->fieldnr-1]->key_length() &&