1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Removed duplicated and wrong merged code

This commit is contained in:
monty@mysql.com
2005-06-03 01:15:56 +03:00
parent e877e71b17
commit ed5774f0c3
2 changed files with 1 additions and 14 deletions

View File

@ -1714,7 +1714,7 @@ int open_and_lock_tables(THD *thd, TABLE_LIST *tables)
SYNOPSIS SYNOPSIS
open_normal_and_derived_tables open_normal_and_derived_tables
thd - thread handler thd - thread handler
tables - list of tables for open&locking tables - list of tables for open
RETURN RETURN
FALSE - ok FALSE - ok

View File

@ -2517,11 +2517,6 @@ mysql_execute_command(THD *thd)
*/ */
start_waiting_global_read_lock(thd); start_waiting_global_read_lock(thd);
// put tables back for PS rexecuting
tables= lex->link_first_table_back(tables, create_table,
create_table_local);
break;
unsent_create_error: unsent_create_error:
// put tables back for PS rexecuting // put tables back for PS rexecuting
tables= lex->link_first_table_back(tables, create_table, tables= lex->link_first_table_back(tables, create_table,
@ -3694,14 +3689,6 @@ error:
thd->lock= 0; thd->lock= 0;
} }
DBUG_VOID_RETURN; DBUG_VOID_RETURN;
error1:
/*
Release the protection against the global read lock and wake
everyone, who might want to set a global read lock.
*/
start_waiting_global_read_lock(thd);
DBUG_VOID_RETURN;
} }