mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 11:57:38 +02:00
Merge branch '10.0' into 10.1
This commit is contained in:
commit
9d2e2d7533
164 changed files with 2738 additions and 1211 deletions
|
|
@ -314,7 +314,7 @@ int maria_extra(MARIA_HA *info, enum ha_extra_function function,
|
|||
share->state.open_count= 1;
|
||||
share->changed= 1;
|
||||
_ma_mark_file_changed_now(share);
|
||||
/* Fall through */
|
||||
/* fall through */
|
||||
case HA_EXTRA_PREPARE_FOR_RENAME:
|
||||
{
|
||||
my_bool do_flush= MY_TEST(function != HA_EXTRA_PREPARE_FOR_DROP);
|
||||
|
|
@ -660,4 +660,3 @@ my_bool ma_killed_standalone(MARIA_HA *info __attribute__((unused)))
|
|||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2727,7 +2727,7 @@ static my_bool translog_recover_page_up_to_sector(uchar *page, uint16 offset)
|
|||
DBUG_PRINT("enter", ("offset: %u first chunk: %u",
|
||||
(uint) offset, (uint) chunk_offset));
|
||||
|
||||
while (page[chunk_offset] != TRANSLOG_FILLER && chunk_offset < offset)
|
||||
while (chunk_offset < offset && page[chunk_offset] != TRANSLOG_FILLER)
|
||||
{
|
||||
uint16 chunk_length;
|
||||
if ((chunk_length=
|
||||
|
|
|
|||
|
|
@ -3058,7 +3058,7 @@ static MARIA_HA *get_MARIA_HA_from_REDO_record(const
|
|||
case LOGREC_REDO_INDEX:
|
||||
case LOGREC_REDO_INDEX_FREE_PAGE:
|
||||
index_page_redo_entry= 1;
|
||||
/* Fall through */
|
||||
/* fall through*/
|
||||
case LOGREC_REDO_INSERT_ROW_HEAD:
|
||||
case LOGREC_REDO_INSERT_ROW_TAIL:
|
||||
case LOGREC_REDO_PURGE_ROW_HEAD:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue