Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
609388fc
Commit
609388fc
authored
Apr 26, 2012
by
Seppo Jaakola
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merged changes from lp:codership-mysql up to rev 3743
-r3725..3737 -r3738..3740 -r3741..3743
parent
e0015163
Changes
16
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
349 additions
and
190 deletions
+349
-190
sql/log_event.cc
sql/log_event.cc
+12
-13
sql/sql_alter.cc
sql/sql_alter.cc
+5
-2
sql/sql_base.cc
sql/sql_base.cc
+19
-0
sql/sql_connect.cc
sql/sql_connect.cc
+3
-3
sql/sql_parse.cc
sql/sql_parse.cc
+97
-106
sql/sql_truncate.cc
sql/sql_truncate.cc
+1
-1
sql/sys_vars.cc
sql/sys_vars.cc
+3
-0
sql/transaction.cc
sql/transaction.cc
+1
-1
sql/wsrep_hton.cc
sql/wsrep_hton.cc
+17
-3
sql/wsrep_mysqld.cc
sql/wsrep_mysqld.cc
+151
-15
sql/wsrep_mysqld.h
sql/wsrep_mysqld.h
+7
-15
sql/wsrep_utils.cc
sql/wsrep_utils.cc
+1
-1
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+0
-5
storage/innobase/rem/rem0rec.c
storage/innobase/rem/rem0rec.c
+16
-10
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+0
-5
storage/xtradb/rem/rem0rec.c
storage/xtradb/rem/rem0rec.c
+16
-10
No files found.
sql/log_event.cc
View file @
609388fc
...
...
@@ -8130,19 +8130,20 @@ int Rows_log_event::do_apply_event(Relay_log_info const *rli)
thd
->
variables
.
option_bits
&=
~
OPTION_RELAXED_UNIQUE_CHECKS
;
/* A small test to verify that objects have consistent types */
DBUG_ASSERT
(
sizeof
(
thd
->
variables
.
option_bits
)
==
sizeof
(
OPTION_RELAXED_UNIQUE_CHECKS
));
if
(
open_and_lock_tables
(
thd
,
rli
->
tables_to_lock
,
FALSE
,
0
))
{
uint
actual_error
=
thd
->
stmt_da
->
sql_errno
();
#ifdef WITH_WSREP
uint
actual_error
=
ER_SERVER_SHUTDOWN
;
if
(
WSREP
(
thd
)
&&
!
thd
->
is_fatal_error
)
if
(
WSREP
(
thd
))
{
sql_print_information
(
"WSREP, BF applier interrupted in log_event.cc"
);
WSREP_WARN
(
"BF applier failed to open_and_lock_tables: %u, fatal: %d "
"wsrep = (exec_mode: %d conflict_state: %d seqno: %lld)"
,
thd
->
stmt_da
->
sql_errno
(),
thd
->
is_fatal_error
,
thd
->
wsrep_exec_mode
,
thd
->
wsrep_conflict_state
,
(
long
long
)
thd
->
wsrep_trx_seqno
);
}
else
actual_error
=
thd
->
stmt_da
->
sql_errno
();
#else
uint
actual_error
=
thd
->
stmt_da
->
sql_errno
();
#endif
if
(
thd
->
is_slave_error
||
thd
->
is_fatal_error
)
{
...
...
@@ -10878,6 +10879,8 @@ Format_description_log_event *wsrep_format_desc; // TODO: free them at the end
At the end (*buf) is shitfed to point to the following event or NULL and
(*buf_len) will be changed to account just being read bytes of the 1st event.
*/
#define WSREP_MAX_ALLOWED_PACKET 1024*1024*1024 // current protocol max
Log_event
*
wsrep_read_log_event
(
char
**
arg_buf
,
size_t
*
arg_buf_len
,
const
Format_description_log_event
*
description_event
)
...
...
@@ -10889,12 +10892,8 @@ Log_event* wsrep_read_log_event(
char
*
buf
=
(
*
arg_buf
);
const
char
*
error
=
0
;
Log_event
*
res
=
0
;
#ifndef max_allowed_packet
THD
*
thd
=
current_thd
;
uint
max_allowed_packet
=
thd
?
thd
->
variables
.
max_allowed_packet
:
~
(
ulong
)
0
;
#endif
if
(
data_len
>
max_allowed_packet
)
if
(
data_len
>
WSREP_MAX_ALLOWED_PACKET
)
{
error
=
"Event too big"
;
goto
err
;
...
...
sql/sql_alter.cc
View file @
609388fc
...
...
@@ -100,11 +100,14 @@ bool Alter_table_statement::execute(THD *thd)
thd
->
enable_slow_log
=
opt_log_slow_admin_statements
;
#ifdef WITH_WSREP
TABLE
*
find_temporary_table
(
THD
*
thd
,
const
TABLE_LIST
*
tl
);
TABLE
*
find_temporary_table
(
THD
*
thd
,
const
TABLE_LIST
*
tl
);
if
((
!
thd
->
is_current_stmt_binlog_format_row
()
||
!
find_temporary_table
(
thd
,
first_table
))
&&
wsrep_to_isolation_begin
(
thd
,
first_table
->
db
,
first_table
->
table_name
))
wsrep_to_isolation_begin
(
thd
,
lex
->
name
.
str
?
select_lex
->
db
:
NULL
,
lex
->
name
.
str
?
lex
->
name
.
str
:
NULL
,
first_table
))
{
WSREP_WARN
(
"ALTER TABLE isolation failure"
);
DBUG_RETURN
(
TRUE
);
...
...
sql/sql_base.cc
View file @
609388fc
...
...
@@ -62,6 +62,7 @@
#ifdef WITH_WSREP
#include "wsrep_mysqld.h"
#endif // WITH_WSREP
bool
...
...
@@ -5077,6 +5078,24 @@ bool open_tables(THD *thd, TABLE_LIST **start, uint *counter, uint flags,
}
}
}
#ifdef WITH_WSREP
#define WSREP_TO_ISOLATION_BEGIN(db_, table_, table_list_) \
if (WSREP(thd) && wsrep_to_isolation_begin(thd, db_, table_, table_list_)) goto err;
if
((
thd
->
lex
->
sql_command
==
SQLCOM_INSERT
||
thd
->
lex
->
sql_command
==
SQLCOM_INSERT_SELECT
||
thd
->
lex
->
sql_command
==
SQLCOM_REPLACE
||
thd
->
lex
->
sql_command
==
SQLCOM_REPLACE_SELECT
||
thd
->
lex
->
sql_command
==
SQLCOM_UPDATE
||
thd
->
lex
->
sql_command
==
SQLCOM_UPDATE_MULTI
||
thd
->
lex
->
sql_command
==
SQLCOM_LOAD
||
thd
->
lex
->
sql_command
==
SQLCOM_DELETE
)
&&
wsrep_replicate_myisam
&&
(
*
start
)
->
table
&&
(
*
start
)
->
table
->
file
->
ht
->
db_type
==
DB_TYPE_MYISAM
)
{
WSREP_TO_ISOLATION_BEGIN
(
NULL
,
NULL
,
(
*
start
));
}
#endif
err:
#ifdef WITH_WSREP
...
...
sql/sql_connect.cc
View file @
609388fc
...
...
@@ -100,9 +100,6 @@ int get_or_create_user_conn(THD *thd, const char *user,
}
thd
->
user_connect
=
uc
;
uc
->
connections
++
;
#ifdef WITH_WSREP
thd
->
wsrep_client_thread
=
1
;
#endif
/* WITH_WSREP */
end:
mysql_mutex_unlock
(
&
LOCK_user_conn
);
return
return_val
;
...
...
@@ -1203,6 +1200,9 @@ bool thd_prepare_connection(THD *thd)
(
char
*
)
thd
->
security_ctx
->
host_or_ip
);
prepare_new_connection_state
(
thd
);
#ifdef WITH_WSREP
thd
->
wsrep_client_thread
=
1
;
#endif
/* WITH_WSREP */
return
FALSE
;
}
...
...
sql/sql_parse.cc
View file @
609388fc
This diff is collapsed.
Click to expand it.
sql/sql_truncate.cc
View file @
609388fc
...
...
@@ -521,7 +521,7 @@ bool Truncate_statement::execute(THD *thd)
#ifdef WITH_WSREP
if
(
WSREP
(
thd
)
&&
wsrep_to_isolation_begin
(
thd
,
first_table
->
db
,
first_table
->
table_name
))
first_table
->
table_name
,
NULL
))
DBUG_RETURN
(
TRUE
);
#endif
/* WITH_WSREP */
if
(
!
(
res
=
truncate_table
(
thd
,
first_table
)))
...
...
sql/sys_vars.cc
View file @
609388fc
...
...
@@ -3779,6 +3779,9 @@ static Sys_var_mybool Sys_wsrep_recover_datadir(
READ_ONLY
GLOBAL_VAR
(
wsrep_recovery
),
CMD_LINE
(
OPT_ARG
,
OPT_WSREP_RECOVER
),
DEFAULT
(
FALSE
));
static
Sys_var_mybool
Sys_wsrep_replicate_myisam
(
"wsrep_replicate_myisam"
,
"To enable myisam replication"
,
GLOBAL_VAR
(
wsrep_replicate_myisam
),
CMD_LINE
(
OPT_ARG
),
DEFAULT
(
FALSE
));
#endif
/* WITH_WSREP */
...
...
sql/transaction.cc
View file @
609388fc
...
...
@@ -158,7 +158,7 @@ bool trans_begin(THD *thd, uint flags)
#ifdef WITH_WSREP
thd
->
wsrep_PA_safe
=
true
;
if
(
thd
->
wsrep_client_thread
&&
wsrep_causal_wait
(
thd
))
if
(
WSREP_CLIENT
(
thd
)
&&
wsrep_causal_wait
(
thd
))
DBUG_RETURN
(
TRUE
);
#endif
/* WITH_WSREP */
...
...
sql/wsrep_hton.cc
View file @
609388fc
...
...
@@ -15,6 +15,7 @@
#include <mysqld.h>
#include "sql_base.h"
#include "rpl_filter.h"
#include <sql_class.h>
#include "wsrep_mysqld.h"
#include "wsrep_priv.h"
...
...
@@ -174,6 +175,7 @@ int wsrep_commit(handlerton *hton, THD *thd, bool all)
DBUG_RETURN
(
0
);
}
extern
Rpl_filter
*
binlog_filter
;
extern
my_bool
opt_log_slave_updates
;
enum
wsrep_trx_status
wsrep_run_wsrep_commit
(
...
...
@@ -238,7 +240,8 @@ wsrep_run_wsrep_commit(
while
(
wsrep_replaying
>
0
&&
thd
->
wsrep_conflict_state
==
NO_CONFLICT
&&
thd
->
killed
==
NOT_KILLED
&&
!
shutdown_in_progress
)
{
!
shutdown_in_progress
)
{
mysql_mutex_unlock
(
&
LOCK_wsrep_replaying
);
mysql_mutex_unlock
(
&
thd
->
LOCK_wsrep_thd
);
...
...
@@ -278,7 +281,8 @@ wsrep_run_wsrep_commit(
WSREP_DEBUG
(
"innobase_commit abort after replaying wait %s"
,
(
thd
->
query
())
?
thd
->
query
()
:
"void"
);
DBUG_RETURN
(
WSREP_TRX_ROLLBACK
);
}
thd
->
wsrep_query_state
=
QUERY_COMMITTING
;
}
thd
->
wsrep_query_state
=
QUERY_COMMITTING
;
mysql_mutex_unlock
(
&
thd
->
LOCK_wsrep_thd
);
cache
=
get_trans_log
(
thd
);
...
...
@@ -296,8 +300,18 @@ wsrep_run_wsrep_commit(
{
mysql_mutex_lock
(
&
thd
->
LOCK_wsrep_thd
);
thd
->
wsrep_exec_mode
=
LOCAL_COMMIT
;
WSREP_DEBUG
(
"empty rbr buffer, query: %s"
,
thd
->
query
());
mysql_mutex_unlock
(
&
thd
->
LOCK_wsrep_thd
);
if
(
thd
->
stmt_da
->
is_ok
()
&&
thd
->
stmt_da
->
affected_rows
()
>
0
&&
!
binlog_filter
->
is_on
())
{
WSREP_WARN
(
"empty rbr buffer, query: %s, affected rows: %llu"
,
thd
->
query
(),
thd
->
stmt_da
->
affected_rows
());
}
else
{
WSREP_DEBUG
(
"empty rbr buffer, query: %s"
,
thd
->
query
());
}
DBUG_RETURN
(
WSREP_TRX_OK
);
}
if
(
!
rcode
)
{
...
...
sql/wsrep_mysqld.cc
View file @
609388fc
...
...
@@ -48,6 +48,7 @@ my_bool wsrep_certify_nonPK = 1; // certify, even when no primary key
long
wsrep_max_protocol_version
=
1
;
// maximum protocol version to use
ulong
wsrep_forced_binlog_format
=
BINLOG_FORMAT_UNSPEC
;
my_bool
wsrep_recovery
=
0
;
// recovery
my_bool
wsrep_replicate_myisam
=
0
;
// enable myisam replication
/*
* End configuration options
...
...
@@ -456,9 +457,25 @@ int wsrep_init()
}
}
char
node_addr
[
256
]
=
{
0
,
};
if
(
!
wsrep_node_address
||
!
strcmp
(
wsrep_node_address
,
""
))
{
size_t
node_addr_max
=
sizeof
(
node_addr
);
size_t
ret
=
default_ip
(
node_addr
,
node_addr_max
);
if
(
!
(
ret
>
0
&&
ret
<
node_addr_max
))
{
WSREP_WARN
(
"Failed to autoguess base node address"
);
node_addr
[
0
]
=
0
;
}
}
else
if
(
wsrep_node_address
)
{
strncpy
(
node_addr
,
wsrep_node_address
,
sizeof
(
node_addr
)
-
1
);
}
wsrep_args
.
data_dir
=
wsrep_data_home_dir
;
wsrep_args
.
node_name
=
(
wsrep_node_name
)
?
wsrep_node_name
:
""
;
wsrep_args
.
node_address
=
(
wsrep_node_address
)
?
wsrep_node_address
:
""
;
wsrep_args
.
node_address
=
node_addr
;
wsrep_args
.
node_incoming
=
wsrep_node_incoming_address
;
wsrep_args
.
options
=
(
wsrep_provider_options
)
?
wsrep_provider_options
:
""
;
...
...
@@ -629,7 +646,8 @@ bool
wsrep_causal_wait
(
THD
*
thd
)
{
if
(
thd
->
variables
.
wsrep_causal_reads
&&
thd
->
variables
.
wsrep_on
&&
!
thd
->
in_active_multi_stmt_transaction
())
!
thd
->
in_active_multi_stmt_transaction
()
&&
thd
->
wsrep_conflict_state
!=
REPLAYING
)
{
// This allows autocommit SELECTs and a first SELECT after SET AUTOCOMMIT=0
// TODO: modify to check if thd has locked any rows.
...
...
@@ -667,10 +685,42 @@ wsrep_causal_wait (THD* thd)
return
false
;
}
bool
wsrep_prepare_key_for_isolation
(
const
char
*
db
,
const
char
*
table
,
wsrep_key_part_t
*
key
,
size_t
*
key_len
)
/*
* Helpers to deal with TOI key arrays
*/
typedef
struct
wsrep_key_arr
{
wsrep_key_t
*
keys
;
size_t
keys_len
;
}
wsrep_key_arr_t
;
static
void
wsrep_keys_free
(
wsrep_key_arr_t
*
key_arr
)
{
for
(
size_t
i
=
0
;
i
<
key_arr
->
keys_len
;
++
i
)
{
my_free
((
wsrep_key_part_t
*
)
key_arr
->
keys
[
i
].
key_parts
);
}
my_free
(
key_arr
->
keys
);
key_arr
->
keys
=
0
;
key_arr
->
keys_len
=
0
;
}
/*!
* @param db Database string
* @param table Table string
* @param key Array of wsrep_key_t
* @param key_len In: number of elements in key array, Out: number of
* elements populated
*
* @return true if preparation was successful, otherwise false.
*/
static
bool
wsrep_prepare_key_for_isolation
(
const
char
*
db
,
const
char
*
table
,
wsrep_key_part_t
*
key
,
size_t
*
key_len
)
{
if
(
*
key_len
<
2
)
return
false
;
...
...
@@ -707,6 +757,89 @@ bool wsrep_prepare_key_for_isolation(const char* db,
return
true
;
}
/* Prepare key list from db/table and table_list */
static
bool
wsrep_prepare_keys_for_isolation
(
THD
*
thd
,
const
char
*
db
,
const
char
*
table
,
const
TABLE_LIST
*
table_list
,
wsrep_key_arr_t
*
ka
)
{
ka
->
keys
=
0
;
ka
->
keys_len
=
0
;
extern
TABLE
*
find_temporary_table
(
THD
*
,
const
TABLE_LIST
*
);
if
(
db
||
table
)
{
TABLE_LIST
tmp_table
;
bzero
((
char
*
)
&
tmp_table
,
sizeof
(
tmp_table
));
tmp_table
.
table_name
=
(
char
*
)
db
;
tmp_table
.
db
=
(
char
*
)
table
;
if
(
!
table
||
!
find_temporary_table
(
thd
,
&
tmp_table
))
{
if
(
!
(
ka
->
keys
=
(
wsrep_key_t
*
)
my_malloc
(
sizeof
(
wsrep_key_t
),
MYF
(
0
))))
{
sql_print_error
(
"Can't allocate memory for key_array"
);
goto
err
;
}
ka
->
keys_len
=
1
;
if
(
!
(
ka
->
keys
[
0
].
key_parts
=
(
wsrep_key_part_t
*
)
my_malloc
(
sizeof
(
wsrep_key_part_t
)
*
2
,
MYF
(
0
))))
{
sql_print_error
(
"Can't allocate memory for key_parts"
);
goto
err
;
}
ka
->
keys
[
0
].
key_parts_len
=
2
;
if
(
!
wsrep_prepare_key_for_isolation
(
db
,
table
,
(
wsrep_key_part_t
*
)
ka
->
keys
[
0
].
key_parts
,
&
ka
->
keys
[
0
].
key_parts_len
))
{
sql_print_error
(
"Preparing keys for isolation failed"
);
goto
err
;
}
}
}
for
(
const
TABLE_LIST
*
table
=
table_list
;
table
;
table
=
table
->
next_global
)
{
if
(
!
find_temporary_table
(
thd
,
table
))
{
wsrep_key_t
*
tmp
;
tmp
=
(
wsrep_key_t
*
)
my_realloc
(
ka
->
keys
,
(
ka
->
keys_len
+
1
)
*
sizeof
(
wsrep_key_t
),
MYF
(
0
));
if
(
!
tmp
)
{
sql_print_error
(
"Can't allocate memory for key_array"
);
goto
err
;
}
ka
->
keys
=
tmp
;
if
(
!
(
ka
->
keys
[
ka
->
keys_len
].
key_parts
=
(
wsrep_key_part_t
*
)
my_malloc
(
sizeof
(
wsrep_key_part_t
)
*
2
,
MYF
(
0
))))
{
sql_print_error
(
"Can't allocate memory for key_parts"
);
goto
err
;
}
ka
->
keys
[
ka
->
keys_len
].
key_parts_len
=
2
;
++
ka
->
keys_len
;
if
(
!
wsrep_prepare_key_for_isolation
(
table
->
db
,
table
->
table_name
,
(
wsrep_key_part_t
*
)
ka
->
keys
[
ka
->
keys_len
-
1
].
key_parts
,
&
ka
->
keys
[
ka
->
keys_len
-
1
].
key_parts_len
))
{
sql_print_error
(
"Preparing keys for isolation failed"
);
goto
err
;
}
}
}
return
true
;
err:
wsrep_keys_free
(
ka
);
return
false
;
}
bool
wsrep_prepare_key_for_innodb
(
const
uchar
*
cache_key
,
size_t
cache_key_len
,
const
uchar
*
row_id
,
...
...
@@ -842,15 +975,14 @@ create_view_query(THD *thd, uchar** buf, uint* buf_len)
return
wsrep_to_buf_helper
(
thd
,
buff
.
ptr
(),
buff
.
length
(),
buf
,
buf_len
);
}
static
int
wsrep_TOI_begin
(
THD
*
thd
,
char
*
db_
,
char
*
table_
)
static
int
wsrep_TOI_begin
(
THD
*
thd
,
char
*
db_
,
char
*
table_
,
const
TABLE_LIST
*
table_list
)
{
wsrep_status_t
ret
(
WSREP_WARNING
);
uchar
*
buf
(
0
);
uint
buf_len
(
0
);
int
buf_err
;
wsrep_key_part_t
wkey_part
[
2
];
wsrep_key_t
wkey
=
{
wkey_part
,
2
};
WSREP_DEBUG
(
"TO BEGIN: %lld, %d : %s"
,
(
long
long
)
thd
->
wsrep_trx_seqno
,
thd
->
wsrep_exec_mode
,
thd
->
query
()
);
switch
(
thd
->
lex
->
sql_command
)
...
...
@@ -874,17 +1006,18 @@ static int wsrep_TOI_begin(THD *thd, char *db_, char *table_)
break
;
}
wsrep_key_arr_t
key_arr
=
{
0
,
0
};
if
(
!
buf_err
&&
wsrep_prepare_key_for_isolation
(
db_
,
table_
,
wkey_part
,
&
wkey
.
key_parts_len
)
&&
wsrep_prepare_keys_for_isolation
(
thd
,
db_
,
table_
,
table_list
,
&
key_arr
)
&&
WSREP_OK
==
(
ret
=
wsrep
->
to_execute_start
(
wsrep
,
thd
->
thread_id
,
&
wkey
,
1
,
key_arr
.
keys
,
key_arr
.
keys_len
,
buf
,
buf_len
,
&
thd
->
wsrep_trx_seqno
)))
{
thd
->
wsrep_exec_mode
=
TOTAL_ORDER
;
wsrep_to_isolation
++
;
if
(
buf
)
my_free
(
buf
);
wsrep_keys_free
(
&
key_arr
);
WSREP_DEBUG
(
"TO BEGIN: %lld, %d"
,(
long
long
)
thd
->
wsrep_trx_seqno
,
thd
->
wsrep_exec_mode
);
}
...
...
@@ -896,6 +1029,7 @@ static int wsrep_TOI_begin(THD *thd, char *db_, char *table_)
my_error
(
ER_LOCK_DEADLOCK
,
MYF
(
0
),
"WSREP replication failed. Check "
"your wsrep connection state and retry the query."
);
if
(
buf
)
my_free
(
buf
);
wsrep_keys_free
(
&
key_arr
);
return
-
1
;
}
return
0
;
...
...
@@ -959,13 +1093,15 @@ static void wsrep_RSU_end(THD *thd)
return
;
}
int
wsrep_to_isolation_begin
(
THD
*
thd
,
char
*
db_
,
char
*
table_
)
int
wsrep_to_isolation_begin
(
THD
*
thd
,
char
*
db_
,
char
*
table_
,
const
TABLE_LIST
*
table_list
)
{
int
ret
=
0
;
if
(
thd
->
variables
.
wsrep_on
&&
thd
->
wsrep_exec_mode
==
LOCAL_STATE
)
{
switch
(
wsrep_OSU_method_options
)
{
case
WSREP_OSU_TOI
:
ret
=
wsrep_TOI_begin
(
thd
,
db_
,
table_
);
break
;
case
WSREP_OSU_TOI
:
ret
=
wsrep_TOI_begin
(
thd
,
db_
,
table_
,
table_list
);
break
;
case
WSREP_OSU_RSU
:
ret
=
wsrep_RSU_begin
(
thd
,
db_
,
table_
);
break
;
}
if
(
!
ret
)
...
...
@@ -1046,7 +1182,7 @@ wsrep_grant_mdl_exception(MDL_context *requestor_ctx,
}
else
{
WSREP_MDL_LOG
(
INFO
,
"MDL conflict
-> BF abort"
,
request_thd
,
granted_thd
);
WSREP_MDL_LOG
(
DEBUG
,
"MDL conflict
-> BF abort"
,
request_thd
,
granted_thd
);
mysql_mutex_unlock
(
&
granted_thd
->
LOCK_wsrep_thd
);
wsrep_abort_thd
((
void
*
)
request_thd
,
(
void
*
)
granted_thd
,
1
);
return
FALSE
;
...
...
sql/wsrep_mysqld.h
View file @
609388fc
...
...
@@ -60,6 +60,7 @@ extern long wsrep_protocol_version;
extern
ulong
wsrep_forced_binlog_format
;
extern
ulong
wsrep_OSU_method_options
;
extern
my_bool
wsrep_recovery
;
extern
my_bool
wsrep_replicate_myisam
;
enum
enum_wsrep_OSU_method
{
WSREP_OSU_TOI
,
WSREP_OSU_RSU
};
...
...
@@ -162,6 +163,9 @@ extern wsrep_seqno_t wsrep_locked_seqno;
#define WSREP(thd) \
(WSREP_ON && (thd && thd->variables.wsrep_on))
#define WSREP_CLIENT(thd) \
(WSREP(thd) && thd->wsrep_client_thread)
#define WSREP_EMULATE_BINLOG(thd) \
(WSREP(thd) && wsrep_emulate_bin_log)
...
...
@@ -206,20 +210,6 @@ class Ha_trx_info;
struct
THD_TRANS
;
void
wsrep_register_hton
(
THD
*
thd
,
bool
all
);
/*!
* @param db Database string
* @param table Table string
* @param key Array of wsrep_key_t
* @param key_len In: number of elements in key array, Out: number of
* elements populated
*
* @return true if preparation was successful, otherwise false.
*/
bool
wsrep_prepare_key_for_isolation
(
const
char
*
db
,
const
char
*
table
,
wsrep_key_part_t
*
key
,
size_t
*
key_len
);
void
wsrep_replication_process
(
THD
*
thd
);
void
wsrep_rollback_process
(
THD
*
thd
);
void
wsrep_brute_force_killer
(
THD
*
thd
);
...
...
@@ -274,7 +264,9 @@ extern PSI_cond_key key_COND_wsrep_rollback;
extern
PSI_mutex_key
key_LOCK_wsrep_replaying
;
extern
PSI_cond_key
key_COND_wsrep_replaying
;
int
wsrep_to_isolation_begin
(
THD
*
thd
,
char
*
db_
,
char
*
table_
);
struct
TABLE_LIST
;
int
wsrep_to_isolation_begin
(
THD
*
thd
,
char
*
db_
,
char
*
table_
,
const
TABLE_LIST
*
table_list
);
void
wsrep_to_isolation_end
(
THD
*
thd
);
void
wsrep_prepare_bf_thd
(
THD
*
thd
,
struct
wsrep_thd_shadow
*
);
...
...
sql/wsrep_utils.cc
View file @
609388fc
...
...
@@ -332,7 +332,7 @@ size_t default_ip (char* buf, size_t buf_len)
"awk '{ print $2 }' | awk -F : '{ print $2 }'"
;
#elif defined(__sun__)
const
char
cmd
[]
=
"/sbin/ifconfig -a | "
"grep -m1 -1 -E 'net[0-9]:' | tail -n 1 | awk '{ print $2 }'"
;
"
/usr/gnu/bin/
grep -m1 -1 -E 'net[0-9]:' | tail -n 1 | awk '{ print $2 }'"
;
#else
char
*
cmd
;
#error "OS not supported"
...
...
storage/innobase/handler/ha_innodb.cc
View file @
609388fc
...
...
@@ -6945,11 +6945,6 @@ wsrep_append_foreign_key(
byte
key
[
WSREP_MAX_SUPPORTED_KEY_LENGTH
+
1
];
ulint
len
=
WSREP_MAX_SUPPORTED_KEY_LENGTH
;
if
(
!
dict_index_is_clust
(
clust_index
))
{
WSREP_ERROR
(
"clustered index not passed for FK append"
);
return
DB_ERROR
;
}
key
[
0
]
=
'\0'
;
rcode
=
wsrep_rec_get_primary_key
(
&
key
[
1
],
&
len
,
clust_rec
,
clust_index
);
...
...
storage/innobase/rem/rem0rec.c
View file @
609388fc
...
...
@@ -1790,25 +1790,23 @@ wsrep_rec_get_primary_key(
uint
key_parts
;
mem_heap_t
*
heap
=
NULL
;
ulint
offsets_
[
REC_OFFS_NORMAL_SIZE
];
const
ulint
*
offsets
;
ut_ad
(
index
);
key_parts
=
dict_index_get_n_unique_in_tree
(
index
);
*
offsets_
=
(
sizeof
offsets_
)
/
sizeof
*
offsets_
;
rec_get_offsets
(
rec
,
index
,
offsets_
,
ULINT_UNDEFINED
,
&
heap
);
if
(
UNIV_LIKELY_NULL
(
heap
))
{
mem_heap_free
(
heap
);
}
rec_offs_init
(
offsets_
);
offsets
=
rec_get_offsets
(
rec
,
index
,
offsets_
,
ULINT_UNDEFINED
,
&
heap
);
ut_ad
(
rec_offs_validate
(
rec
,
NULL
,
offsets
_
));
ut_ad
(
rec_offs_validate
(
rec
,
NULL
,
offsets
));
ut_ad
(
rec
);
key_parts
=
dict_index_get_n_unique_in_tree
(
index
);
for
(
i
=
0
;
i
<
key_parts
;
i
++
)
{
dict_field_t
*
field
=
dict_index_get_nth_field
(
index
,
i
);
dict_field_t
*
field
=
dict_index_get_nth_field
(
index
,
i
);
const
dict_col_t
*
col
=
dict_field_get_col
(
field
);
data
=
rec_get_nth_field
(
rec
,
offsets
_
,
i
,
&
len
);
data
=
rec_get_nth_field
(
rec
,
offsets
,
i
,
&
len
);
if
(
key_len
+
len
>
((
col
->
prtype
&
DATA_NOT_NULL
)
?
*
buf_len
:
*
buf_len
-
1
))
{
fprintf
(
stderr
,
...
...
@@ -1836,11 +1834,19 @@ wsrep_rec_get_primary_key(
}
}
rec_validate
(
rec
,
offsets_
);
rec_validate
(
rec
,
offsets
);
if
(
UNIV_LIKELY_NULL
(
heap
))
{
mem_heap_free
(
heap
);
}
*
buf_len
=
key_len
;
return
DB_SUCCESS
;
err_out:
if
(
UNIV_LIKELY_NULL
(
heap
))
{
mem_heap_free
(
heap
);
}
return
DB_ERROR
;
}
#endif // WITH_WSREP
storage/xtradb/handler/ha_innodb.cc
View file @
609388fc
...
...
@@ -7589,11 +7589,6 @@ wsrep_append_foreign_key(
byte
key
[
WSREP_MAX_SUPPORTED_KEY_LENGTH
+
1
];
ulint
len
=
WSREP_MAX_SUPPORTED_KEY_LENGTH
;
if
(
!
dict_index_is_clust
(
clust_index
))
{
WSREP_ERROR
(
"clustered index not passed for FK append"
);
return
DB_ERROR
;
}
key
[
0
]
=
'\0'
;
rcode
=
wsrep_rec_get_primary_key
(
&
key
[
1
],
&
len
,
clust_rec
,
clust_index
);
...
...
storage/xtradb/rem/rem0rec.c
View file @
609388fc
...
...
@@ -1790,25 +1790,23 @@ wsrep_rec_get_primary_key(
uint
key_parts
;
mem_heap_t
*
heap
=
NULL
;
ulint
offsets_
[
REC_OFFS_NORMAL_SIZE
];
const
ulint
*
offsets
;
ut_ad
(
index
);
key_parts
=
dict_index_get_n_unique_in_tree
(
index
);
*
offsets_
=
(
sizeof
offsets_
)
/
sizeof
*
offsets_
;
rec_get_offsets
(
rec
,
index
,
offsets_
,
ULINT_UNDEFINED
,
&
heap
);
if
(
UNIV_LIKELY_NULL
(
heap
))
{
mem_heap_free
(
heap
);
}
rec_offs_init
(
offsets_
);
offsets
=
rec_get_offsets
(
rec
,
index
,
offsets_
,
ULINT_UNDEFINED
,
&
heap
);
ut_ad
(
rec_offs_validate
(
rec
,
NULL
,
offsets
_
));
ut_ad
(
rec_offs_validate
(
rec
,
NULL
,
offsets
));
ut_ad
(
rec
);
key_parts
=
dict_index_get_n_unique_in_tree
(
index
);
for
(
i
=
0
;
i
<
key_parts
;
i
++
)
{
dict_field_t
*
field
=
dict_index_get_nth_field
(
index
,
i
);
dict_field_t
*
field
=
dict_index_get_nth_field
(
index
,
i
);
const
dict_col_t
*
col
=
dict_field_get_col
(
field
);
data
=
rec_get_nth_field
(
rec
,
offsets
_
,
i
,
&
len
);
data
=
rec_get_nth_field
(
rec
,
offsets
,
i
,
&
len
);
if
(
key_len
+
len
>
((
col
->
prtype
&
DATA_NOT_NULL
)
?
*
buf_len
:
*
buf_len
-
1
))
{
fprintf
(
stderr
,
...
...
@@ -1836,11 +1834,19 @@ wsrep_rec_get_primary_key(
}
}
rec_validate
(
rec
,
offsets_
);
rec_validate
(
rec
,
offsets
);
if
(
UNIV_LIKELY_NULL
(
heap
))
{
mem_heap_free
(
heap
);
}
*
buf_len
=
key_len
;
return
DB_SUCCESS
;
err_out:
if
(
UNIV_LIKELY_NULL
(
heap
))
{
mem_heap_free
(
heap
);
}
return
DB_ERROR
;
}
#endif // WITH_WSREP
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment