Commit 02e82386 authored by unknown's avatar unknown

ma_checkpoint.c, ma_recovery.c:

  SCCS merged
ma_check.c:
  Auto merged


storage/maria/ma_check.c:
  Auto merged
storage/maria/ma_checkpoint.c:
  SCCS merged
storage/maria/ma_recovery.c:
  SCCS merged
parents 1031a4d5 0bd667d3
set autocommit=1;
reset master;
create table bug16206 (a int);
insert into bug16206 values(1);
start transaction;
insert into bug16206 values(2);
commit;
show binlog events;
Log_name Pos Event_type Server_id End_log_pos Info
f n Format_desc 1 n Server ver: VERSION, Binlog ver: 4
f n Query 1 n use `test`; create table bug16206 (a int)
f n Query 1 n use `test`; insert into bug16206 values(1)
f n Query 1 n use `test`; insert into bug16206 values(2)
drop table bug16206;
reset master;
create table bug16206 (a int) engine= bdb;
insert into bug16206 values(0);
insert into bug16206 values(1);
start transaction;
insert into bug16206 values(2);
commit;
insert into bug16206 values(3);
show binlog events;
Log_name Pos Event_type Server_id End_log_pos Info
f n Format_desc 1 n Server ver: VERSION, Binlog ver: 4
f n Query 1 n use `test`; create table bug16206 (a int) engine= bdb
f n Query 1 n use `test`; insert into bug16206 values(0)
f n Query 1 n use `test`; insert into bug16206 values(1)
f n Query 1 n use `test`; BEGIN
f n Query 1 n use `test`; insert into bug16206 values(2)
f n Query 1 n use `test`; COMMIT
f n Query 1 n use `test`; insert into bug16206 values(3)
drop table bug16206;
set autocommit=0;
End of 5.0 tests
-- source include/not_embedded.inc
-- source include/have_bdb.inc
#
# Bug #16206: Superfluous COMMIT event in binlog when updating BDB in autocommit mode
#
set autocommit=1;
let $VERSION=`select version()`;
reset master;
create table bug16206 (a int);
insert into bug16206 values(1);
start transaction;
insert into bug16206 values(2);
commit;
--replace_result $VERSION VERSION
--replace_column 1 f 2 n 5 n
show binlog events;
drop table bug16206;
reset master;
create table bug16206 (a int) engine= bdb;
insert into bug16206 values(0);
insert into bug16206 values(1);
start transaction;
insert into bug16206 values(2);
commit;
insert into bug16206 values(3);
--replace_result $VERSION VERSION
--replace_column 1 f 2 n 5 n
show binlog events;
drop table bug16206;
set autocommit=0;
--echo End of 5.0 tests
...@@ -234,6 +234,29 @@ let $mvr_crash_statement= set global maria_checkpoint_interval=1; ...@@ -234,6 +234,29 @@ let $mvr_crash_statement= set global maria_checkpoint_interval=1;
-- source include/maria_verify_recovery.inc -- source include/maria_verify_recovery.inc
drop table t1; drop table t1;
--echo Test of REPAIR's implicit commit
let $mms_tables=1;
create table t1 (a varchar(100), key(a)) engine=maria;
let $mvr_restore_old_snapshot=0;
let $mms_compare_physically=0;
let $mvr_crash_statement= set global maria_checkpoint_interval=1;
let $mvr_debug_option="+d,maria_flush_whole_log,maria_flush_whole_page_cache,maria_crash";
insert into t1 values(3);
-- source include/maria_make_snapshot_for_comparison.inc
lock tables t1 write;
insert into t1 values (1);
repair table t1;
insert into t1 values(2);
select * from t1;
# checksum comparison failure is expected, SELECT output matters
-- source include/maria_verify_recovery.inc
# 2 should be missing (rolled back) but 1 should be committed
select * from t1;
drop table t1;
# #
# Test with big blobs # Test with big blobs
# #
......
...@@ -35,6 +35,7 @@ injector::transaction::transaction(MYSQL_BIN_LOG *log, THD *thd) ...@@ -35,6 +35,7 @@ injector::transaction::transaction(MYSQL_BIN_LOG *log, THD *thd)
m_start_pos.m_file_name= my_strdup(log_info.log_file_name, MYF(0)); m_start_pos.m_file_name= my_strdup(log_info.log_file_name, MYF(0));
m_start_pos.m_file_pos= log_info.pos; m_start_pos.m_file_pos= log_info.pos;
m_thd->lex->start_transaction_opt= 0; /* for begin_trans() */
begin_trans(m_thd); begin_trans(m_thd);
thd->set_current_stmt_binlog_row_based(); thd->set_current_stmt_binlog_row_based();
......
...@@ -28,6 +28,10 @@ ...@@ -28,6 +28,10 @@
#include "events.h" #include "events.h"
#include "sql_trigger.h" #include "sql_trigger.h"
#ifdef WITH_MARIA_STORAGE_ENGINE
#include "../storage/maria/ha_maria.h"
#endif
/** /**
@defgroup Runtime_Environment Runtime Environment @defgroup Runtime_Environment Runtime Environment
@{ @{
...@@ -122,6 +126,9 @@ bool end_active_trans(THD *thd) ...@@ -122,6 +126,9 @@ bool end_active_trans(THD *thd)
thd->server_status&= ~SERVER_STATUS_IN_TRANS; thd->server_status&= ~SERVER_STATUS_IN_TRANS;
if (ha_commit(thd)) if (ha_commit(thd))
error=1; error=1;
#ifdef WITH_MARIA_STORAGE_ENGINE
ha_maria::implicit_commit(thd);
#endif
} }
thd->options&= ~(OPTION_BEGIN | OPTION_KEEP_LOG); thd->options&= ~(OPTION_BEGIN | OPTION_KEEP_LOG);
thd->transaction.all.modified_non_trans_table= FALSE; thd->transaction.all.modified_non_trans_table= FALSE;
...@@ -627,6 +634,7 @@ int end_trans(THD *thd, enum enum_mysql_completiontype completion) ...@@ -627,6 +634,7 @@ int end_trans(THD *thd, enum enum_mysql_completiontype completion)
xa_state_names[thd->transaction.xid_state.xa_state]); xa_state_names[thd->transaction.xid_state.xa_state]);
DBUG_RETURN(1); DBUG_RETURN(1);
} }
thd->lex->start_transaction_opt= 0; /* for begin_trans() */
switch (completion) { switch (completion) {
case COMMIT: case COMMIT:
/* /*
......
...@@ -2184,12 +2184,20 @@ int ha_maria::external_lock(THD *thd, int lock_type) ...@@ -2184,12 +2184,20 @@ int ha_maria::external_lock(THD *thd, int lock_type)
int ha_maria::start_stmt(THD *thd, thr_lock_type lock_type) int ha_maria::start_stmt(THD *thd, thr_lock_type lock_type)
{ {
TRN *trn= THD_TRN; TRN *trn;
if (file->s->base.born_transactional) if (file->s->base.born_transactional)
{ {
trn= THD_TRN;
DBUG_ASSERT(trn); // this may be called only after external_lock() DBUG_ASSERT(trn); // this may be called only after external_lock()
DBUG_ASSERT(trnman_has_locked_tables(trn)); DBUG_ASSERT(trnman_has_locked_tables(trn));
DBUG_ASSERT(lock_type != F_UNLCK); DBUG_ASSERT(lock_type != F_UNLCK);
/*
If there was an implicit commit under this LOCK TABLES by a previous
statement (like a DDL), at least if that previous statement was about a
different ha_maria than 'this' then this->file->trn is a stale
pointer. We fix it:
*/
file->trn= trn;
/* /*
As external_lock() was already called, don't increment locked_tables. As external_lock() was already called, don't increment locked_tables.
Note that we call the function below possibly several times when Note that we call the function below possibly several times when
...@@ -2202,6 +2210,49 @@ int ha_maria::start_stmt(THD *thd, thr_lock_type lock_type) ...@@ -2202,6 +2210,49 @@ int ha_maria::start_stmt(THD *thd, thr_lock_type lock_type)
return 0; return 0;
} }
/**
Performs an implicit commit of the Maria transaction and creates a new
one.
This can be considered a hack. When Maria loses HA_NO_TRANSACTIONS it will
be participant in the connection's transaction and so the implicit commits
(ha_commit()) (like in end_active_trans()) will do the implicit commit
without need to call this function which can then be removed.
*/
int ha_maria::implicit_commit(THD *thd)
{
#ifndef MARIA_CANNOT_ROLLBACK
#error this method should be removed
#endif
TRN *trn;
int error= 0;
DBUG_ENTER("ha_maria::implicit_commit");
if ((trn= THD_TRN) != NULL)
{
uint locked_tables= trnman_has_locked_tables(trn);
if (unlikely(ma_commit(trn)))
error= 1;
/*
We need to create a new transaction and put it in THD_TRN. Indeed,
tables may be under LOCK TABLES, and so they will start the next
statement assuming they have a trn (see ha_maria::start_stmt()).
*/
trn= trnman_new_trn(& thd->mysys_var->mutex,
& thd->mysys_var->suspend,
thd->thread_stack + STACK_DIRECTION *
(my_thread_stack_size - STACK_MIN_SIZE));
/* This is just a commit, tables stay locked if they were: */
trnman_reset_locked_tables(trn, locked_tables);
THD_TRN= trn;
if (unlikely(trn == NULL))
error= HA_ERR_OUT_OF_MEM;
}
DBUG_RETURN(error);
}
THR_LOCK_DATA **ha_maria::store_lock(THD *thd, THR_LOCK_DATA **ha_maria::store_lock(THD *thd,
THR_LOCK_DATA **to, THR_LOCK_DATA **to,
enum thr_lock_type lock_type) enum thr_lock_type lock_type)
...@@ -2494,7 +2545,7 @@ static int maria_commit(handlerton *hton __attribute__ ((unused)), ...@@ -2494,7 +2545,7 @@ static int maria_commit(handlerton *hton __attribute__ ((unused)),
{ {
TRN *trn= THD_TRN; TRN *trn= THD_TRN;
DBUG_ENTER("maria_commit"); DBUG_ENTER("maria_commit");
trnman_reset_locked_tables(trn); trnman_reset_locked_tables(trn, 0);
/* statement or transaction ? */ /* statement or transaction ? */
if ((thd->options & (OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN)) && !all) if ((thd->options & (OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN)) && !all)
DBUG_RETURN(0); // end of statement DBUG_RETURN(0); // end of statement
...@@ -2509,7 +2560,7 @@ static int maria_rollback(handlerton *hton __attribute__ ((unused)), ...@@ -2509,7 +2560,7 @@ static int maria_rollback(handlerton *hton __attribute__ ((unused)),
{ {
TRN *trn= THD_TRN; TRN *trn= THD_TRN;
DBUG_ENTER("maria_rollback"); DBUG_ENTER("maria_rollback");
trnman_reset_locked_tables(trn); trnman_reset_locked_tables(trn, 0);
/* statement or transaction ? */ /* statement or transaction ? */
if ((thd->options & (OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN)) && !all) if ((thd->options & (OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN)) && !all)
{ {
......
...@@ -152,4 +152,6 @@ class ha_maria :public handler ...@@ -152,4 +152,6 @@ class ha_maria :public handler
*engine_callback, *engine_callback,
ulonglong *engine_data); ulonglong *engine_data);
#endif #endif
static int implicit_commit(THD *thd);
}; };
...@@ -363,7 +363,7 @@ static void flush_all_tables(int what_to_flush) ...@@ -363,7 +363,7 @@ static void flush_all_tables(int what_to_flush)
{ {
case 0: case 0:
res= _ma_flush_table_files(info, MARIA_FLUSH_DATA | MARIA_FLUSH_INDEX, res= _ma_flush_table_files(info, MARIA_FLUSH_DATA | MARIA_FLUSH_INDEX,
FLUSH_KEEP, FLUSH_KEEP); FLUSH_KEEP, FLUSH_KEEP);
break; break;
case 1: case 1:
res= _ma_state_info_write(info->s, 1|4); res= _ma_state_info_write(info->s, 1|4);
......
...@@ -3033,6 +3033,7 @@ void _ma_tmp_disable_logging_for_table(MARIA_HA *info, ...@@ -3033,6 +3033,7 @@ void _ma_tmp_disable_logging_for_table(MARIA_HA *info,
my_bool log_incomplete) my_bool log_incomplete)
{ {
MARIA_SHARE *share= info->s; MARIA_SHARE *share= info->s;
DBUG_ENTER("_ma_tmp_disable_logging_for_table");
if (log_incomplete) if (log_incomplete)
{ {
uchar log_data[FILEID_STORE_SIZE]; uchar log_data[FILEID_STORE_SIZE];
...@@ -3061,6 +3062,7 @@ void _ma_tmp_disable_logging_for_table(MARIA_HA *info, ...@@ -3061,6 +3062,7 @@ void _ma_tmp_disable_logging_for_table(MARIA_HA *info,
_ma_set_data_pagecache_callbacks(&info->dfile, share); _ma_set_data_pagecache_callbacks(&info->dfile, share);
_ma_set_index_pagecache_callbacks(&share->kfile, share); _ma_set_index_pagecache_callbacks(&share->kfile, share);
_ma_bitmap_set_pagecache_callbacks(&share->bitmap.file, share); _ma_bitmap_set_pagecache_callbacks(&share->bitmap.file, share);
DBUG_VOID_RETURN;
} }
...@@ -3073,9 +3075,10 @@ void _ma_tmp_disable_logging_for_table(MARIA_HA *info, ...@@ -3073,9 +3075,10 @@ void _ma_tmp_disable_logging_for_table(MARIA_HA *info,
void _ma_reenable_logging_for_table(MARIA_HA *info) void _ma_reenable_logging_for_table(MARIA_HA *info)
{ {
MARIA_SHARE *share= info->s; MARIA_SHARE *share= info->s;
DBUG_ENTER("_ma_reenable_logging_for_table");
if (share->now_transactional == share->base.born_transactional) if (share->now_transactional == share->base.born_transactional)
return; DBUG_VOID_RETURN;
if ((share->now_transactional= share->base.born_transactional)) if ((share->now_transactional= share->base.born_transactional))
{ {
...@@ -3090,6 +3093,7 @@ void _ma_reenable_logging_for_table(MARIA_HA *info) ...@@ -3090,6 +3093,7 @@ void _ma_reenable_logging_for_table(MARIA_HA *info)
_ma_set_data_pagecache_callbacks(&info->dfile, share); _ma_set_data_pagecache_callbacks(&info->dfile, share);
_ma_set_index_pagecache_callbacks(&share->kfile, share); _ma_set_index_pagecache_callbacks(&share->kfile, share);
_ma_bitmap_set_pagecache_callbacks(&share->bitmap.file, share); _ma_bitmap_set_pagecache_callbacks(&share->bitmap.file, share);
DBUG_VOID_RETURN;
} }
......
...@@ -62,9 +62,9 @@ uint trnman_increment_locked_tables(TRN *trn) ...@@ -62,9 +62,9 @@ uint trnman_increment_locked_tables(TRN *trn)
return trn->locked_tables++; return trn->locked_tables++;
} }
my_bool trnman_has_locked_tables(TRN *trn) uint trnman_has_locked_tables(TRN *trn)
{ {
return trn->locked_tables != 0; return trn->locked_tables;
} }
uint trnman_decrement_locked_tables(TRN *trn) uint trnman_decrement_locked_tables(TRN *trn)
...@@ -72,9 +72,9 @@ uint trnman_decrement_locked_tables(TRN *trn) ...@@ -72,9 +72,9 @@ uint trnman_decrement_locked_tables(TRN *trn)
return --trn->locked_tables; return --trn->locked_tables;
} }
void trnman_reset_locked_tables(TRN *trn) void trnman_reset_locked_tables(TRN *trn, uint locked_tables)
{ {
trn->locked_tables= 0; trn->locked_tables= locked_tables;
} }
......
...@@ -51,8 +51,8 @@ my_bool trnman_collect_transactions(LEX_STRING *str_act, LEX_STRING *str_com, ...@@ -51,8 +51,8 @@ my_bool trnman_collect_transactions(LEX_STRING *str_act, LEX_STRING *str_com,
uint trnman_increment_locked_tables(TRN *trn); uint trnman_increment_locked_tables(TRN *trn);
uint trnman_decrement_locked_tables(TRN *trn); uint trnman_decrement_locked_tables(TRN *trn);
my_bool trnman_has_locked_tables(TRN *trn); uint trnman_has_locked_tables(TRN *trn);
void trnman_reset_locked_tables(TRN *trn); void trnman_reset_locked_tables(TRN *trn, uint locked_tables);
TRN *trnman_recreate_trn_from_recovery(uint16 shortid, TrID longid); TRN *trnman_recreate_trn_from_recovery(uint16 shortid, TrID longid);
TRN *trnman_get_any_trn(); TRN *trnman_get_any_trn();
#define TRANSID_SIZE 6 #define TRANSID_SIZE 6
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment