mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
Added missing mysqlbinlog to binary distributions.
Applied patch to mysqlhotcopy myisam/mi_open.c: Fixed some purify warnings mysql-test/mysql-test-run.sh: Added --core as default to test suite scripts/make_binary_distribution.sh: Added missing mysqlbinlog scripts/mysqlhotcopy.sh: Applied patch with --record-log option sql/item_timefunc.cc: Fixed problem with SEC_TO_TIME() for long signed integers.
This commit is contained in:
parent
0176dacd54
commit
f271c8145d
5 changed files with 108 additions and 14 deletions
|
|
@ -292,15 +292,16 @@ MI_INFO *mi_open(const char *name, int mode, uint open_flags)
|
|||
}
|
||||
}
|
||||
}
|
||||
if (share->keyinfo[i].flag & HA_FULLTEXT) /* SerG */
|
||||
if (share->keyinfo[i].flag & HA_FULLTEXT)
|
||||
{
|
||||
share->keyinfo[i].seg=pos-FT_SEGS; /* SerG */
|
||||
share->keyinfo[i].seg=pos-FT_SEGS;
|
||||
share->fulltext_index=1;
|
||||
}
|
||||
share->keyinfo[i].end=pos;
|
||||
pos->type=HA_KEYTYPE_END; /* End */
|
||||
pos->length=share->base.rec_reflength;
|
||||
pos->null_bit=0;
|
||||
pos->flag=0; /* For purify */
|
||||
pos++;
|
||||
}
|
||||
for (i=0 ; i < uniques ; i++)
|
||||
|
|
@ -324,6 +325,7 @@ MI_INFO *mi_open(const char *name, int mode, uint open_flags)
|
|||
share->uniqueinfo[i].end=pos;
|
||||
pos->type=HA_KEYTYPE_END; /* End */
|
||||
pos->null_bit=0;
|
||||
pos->flag=0;
|
||||
pos++;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue