Skip to content
Permalink
Browse files
MDEV-21170 : Galera test failure on galera_sr.GCF-1043[A|B]
Add error printout when mysql.wsrep_streaming_log lock
fails. However, tests are very undeterministic and not
suitable for mtr environment. Thus, they are removed.
  • Loading branch information
Jan Lindström committed Sep 22, 2020
1 parent 952a028 commit 98ac2d4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 68 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

@@ -232,6 +232,11 @@ static int open_table(THD* thd,
NULL, lock_type);

if (!open_n_lock_single_table(thd, &tables, tables.lock_type, flags)) {
if (thd->is_error()) {
WSREP_WARN("Can't lock table %s.%s : %d (%s)",
schema_name->str, table_name->str,
thd->get_stmt_da()->sql_errno(), thd->get_stmt_da()->message());
}
close_thread_tables(thd);
my_error(ER_NO_SUCH_TABLE, MYF(0), schema_name->str, table_name->str);
DBUG_RETURN(1);

0 comments on commit 98ac2d4

Please sign in to comment.