mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
eff3780dd8
Backport of: ------------------------------------------------------------ revno: 2630.4.1 committer: Dmitry Lenev <dlenev@mysql.com> branch nick: mysql-6.0-3726-w timestamp: Fri 2008-05-23 17:54:03 +0400 message: WL#3726 "DDL locking for all metadata objects". After review fixes in progress. ------------------------------------------------------------ This is the first patch in series. It transforms the metadata locking subsystem to use a dedicated module (mdl.h,cc). No significant changes in the locking protocol. The import passes the test suite with the exception of deprecated/removed 6.0 features, and MERGE tables. The latter are subject to a fix by WL#4144. Unfortunately, the original changeset comments got lost in a merge, thus this import has its own (largely insufficient) comments. This patch fixes Bug#25144 "replication / binlog with view breaks". Warning: this patch introduces an incompatible change: Under LOCK TABLES, it's no longer possible to FLUSH a table that was not locked for WRITE. Under LOCK TABLES, it's no longer possible to DROP a table or VIEW that was not locked for WRITE. ****** Backport of: ------------------------------------------------------------ revno: 2630.4.2 committer: Dmitry Lenev <dlenev@mysql.com> branch nick: mysql-6.0-3726-w timestamp: Sat 2008-05-24 14:03:45 +0400 message: WL#3726 "DDL locking for all metadata objects". After review fixes in progress. ****** Backport of: ------------------------------------------------------------ revno: 2630.4.3 committer: Dmitry Lenev <dlenev@mysql.com> branch nick: mysql-6.0-3726-w timestamp: Sat 2008-05-24 14:08:51 +0400 message: WL#3726 "DDL locking for all metadata objects" Fixed failing Windows builds by adding mdl.cc to the lists of files needed to build server/libmysqld on Windows. ****** Backport of: ------------------------------------------------------------ revno: 2630.4.4 committer: Dmitry Lenev <dlenev@mysql.com> branch nick: mysql-6.0-3726-w timestamp: Sat 2008-05-24 21:57:58 +0400 message: WL#3726 "DDL locking for all metadata objects". Fix for assert failures in kill.test which occured when one tried to kill ALTER TABLE statement on merge table while it was waiting in wait_while_table_is_used() for other connections to close this table. These assert failures stemmed from the fact that cleanup code in this case assumed that temporary table representing new version of table was open with adding to THD::temporary_tables list while code which were opening this temporary table wasn't always fulfilling this. This patch changes code that opens new version of table to always do this linking in. It also streamlines cleanup process for cases when error occurs while we have new version of table open. ****** WL#3726 "DDL locking for all metadata objects" Add libmysqld/mdl.cc to .bzrignore. ****** Backport of: ------------------------------------------------------------ revno: 2630.4.6 committer: Dmitry Lenev <dlenev@mysql.com> branch nick: mysql-6.0-3726-w timestamp: Sun 2008-05-25 00:33:22 +0400 message: WL#3726 "DDL locking for all metadata objects". Addition to the fix of assert failures in kill.test caused by changes for this worklog. Make sure we close the new table only once. .bzrignore: Add libmysqld/mdl.cc libmysqld/CMakeLists.txt: Added mdl.cc to the list of files needed for building of libmysqld. libmysqld/Makefile.am: Added files implementing new meta-data locking subsystem to the server. mysql-test/include/handler.inc: Use separate connection for waiting while threads performing DDL operations conflicting with open HANDLER tables reach blocked state. This is required because now we check and close tables open by HANDLER statements in this connection conflicting with DDL in another each time open_tables() is called and thus select from I_S which is used for waiting will unblock DDL operations if issued from connection with open HANDLERs. mysql-test/r/create.result: Adjusted test case after change in implementation of CREATE TABLE ... SELECT. We no longer have special check in open_table() which catches the case when we select from the table created. Instead we rely on unique_table() call which happens after opening and locking all tables. mysql-test/r/flush.result: FLUSH TABLES WITH READ LOCK can no longer happen under LOCK TABLES. Updated test accordingly. mysql-test/r/flush_table.result: Under LOCK TABLES we no longer allow to do FLUSH TABLES for tables locked for read. Updated test accordingly. mysql-test/r/handler_innodb.result: Use separate connection for waiting while threads performing DDL operations conflicting with open HANDLER tables reach blocked state. This is required because now we check and close tables open by HANDLER statements in this connection conflicting with DDL in another each time open_tables() is called and thus select from I_S which is used for waiting will unblock DDL operations if issued from connection with open HANDLERs. mysql-test/r/handler_myisam.result: Use separate connection for waiting while threads performing DDL operations conflicting with open HANDLER tables reach blocked state. This is required because now we check and close tables open by HANDLER statements in this connection conflicting with DDL in another each time open_tables() is called and thus select from I_S which is used for waiting will unblock DDL operations if issued from connection with open HANDLERs. mysql-test/r/information_schema.result: Additional test for WL#3726 "DDL locking for all metadata objects". Check that we use high-priority metadata lock requests when filling I_S tables. Rearrange tests to match 6.0 better (fewer merge conflicts). mysql-test/r/kill.result: Added tests checking that DDL and DML statements waiting for metadata locks can be interrupted by KILL command. mysql-test/r/lock.result: One no longer is allowed to do DROP VIEW under LOCK TABLES even if this view is locked by LOCK TABLES. The problem is that in such situation write locks on view are not mutually exclusive so upgrading metadata lock which is required for dropping of view will lead to deadlock. mysql-test/r/partition_column_prune.result: Update results (same results in 6.0), WL#3726 mysql-test/r/partition_pruning.result: Update results (same results in 6.0), WL#3726 mysql-test/r/ps_ddl.result: We no longer invalidate prepared CREATE TABLE ... SELECT statement if target table changes. This is OK since it is not strictly necessary. The first change is wrong, is caused by FLUSH TABLE now flushing all unused tables. This is a regression that Dmitri fixed in 6.0 in a follow up patch. mysql-test/r/sp.result: Under LOCK TABLES we no longer allow accessing views which were not explicitly locked. To access view we need to obtain metadata lock on it and doing this under LOCK TABLES may lead to deadlocks. mysql-test/r/view.result: One no longer is allowed to do DROP VIEW under LOCK TABLES even if this view is locked by LOCK TABLES. The problem is that in such situation even "write locks" on view are not mutually exclusive so upgrading metadata lock which is required for dropping of view will lead to deadlock mysql-test/r/view_grant.result: ALTER VIEW implementation was changed to open a view only after checking that user which does alter has appropriate privileges on it. This means that in case when user's privileges are insufficient for this we won't check that new view definer is the same as original one or user performing alter has SUPER privilege. Adjusted test case accordingly. mysql-test/r/view_multi.result: Added test case for bug#25144 "replication / binlog with view breaks". mysql-test/suite/rpl/t/disabled.def: Disable test for deprecated features (they don't work with new MDL). mysql-test/t/create.test: Adjusted test case after change in implementation of CREATE TABLE ... SELECT. We no longer have special check in open_table() which catches the case when we select from the table created. Instead we rely on unique_table() call which happens after opening and locking all tables. mysql-test/t/disabled.def: Disable merge.test, subject of WL#4144 mysql-test/t/flush.test: FLUSH TABLES WITH READ LOCK can no longer happen under LOCK TABLES. Updated test accordingly. mysql-test/t/flush_table.test: Under LOCK TABLES we no longer allow to do FLUSH TABLES for tables locked for read. Updated test accordingly. mysql-test/t/information_schema.test: Additional test for WL#3726 "DDL locking for all metadata objects". Check that we use high-priority metadata lock requests when filling I_S tables. Rearrange the results for easier merges with 6.0. mysql-test/t/kill.test: Added tests checking that DDL and DML statements waiting for metadata locks can be interrupted by KILL command. mysql-test/t/lock.test: One no longer is allowed to do DROP VIEW under LOCK TABLES even if this view is locked by LOCK TABLES. The problem is that in such situation write locks on view are not mutually exclusive so upgrading metadata lock which is required for dropping of view will lead to deadlock. mysql-test/t/lock_multi.test: Adjusted test case to the changes of status in various places caused by change in implementation FLUSH TABLES WITH READ LOCK, which is now takes global metadata lock before flushing tables and therefore waits on at these places. mysql-test/t/ps_ddl.test: We no longer invalidate prepared CREATE TABLE ... SELECT statement if target table changes. This is OK since it is not strictly necessary. The first change is wrong, is caused by FLUSH TABLE now flushing all unused tables. This is a regression that Dmitri fixed in 6.0 in a follow up patch. mysql-test/t/sp.test: Under LOCK TABLES we no longer allow accessing views which were not explicitly locked. To access view we need to obtain metadata lock on it and doing this under LOCK TABLES may lead to deadlocks. mysql-test/t/trigger_notembedded.test: Adjusted test case to the changes of status in various places caused by change in implementation FLUSH TABLES WITH READ LOCK, which is now takes global metadata lock before flushing tables and therefore waits on at these places. mysql-test/t/view.test: One no longer is allowed to do DROP VIEW under LOCK TABLES even if this view is locked by LOCK TABLES. The problem is that in such situation even "write locks" on view are not mutually exclusive so upgrading metadata lock which is required for dropping of view will lead to deadlock. mysql-test/t/view_grant.test: ALTER VIEW implementation was changed to open a view only after checking that user which does alter has appropriate privileges on it. This means that in case when user's privileges are insufficient for this we won't check that new view definer is the same as original one or user performing alter has SUPER privilege. Adjusted test case accordingly. mysql-test/t/view_multi.test: Added test case for bug#25144 "replication / binlog with view breaks". sql/CMakeLists.txt: Added mdl.cc to the list of files needed for building of server. sql/Makefile.am: Added files implementing new meta-data locking subsystem to the server. sql/event_db_repository.cc: Allocate metadata lock requests objects (MDL_LOCK) on execution memory root in cases when TABLE_LIST objects is also allocated there or on stack. sql/ha_ndbcluster.cc: Adjusted code to work nicely with new metadata locking subsystem. close_cached_tables() no longer has wait_for_placeholder argument. Instead of relying on this parameter and related behavior FLUSH TABLES WITH READ LOCK now takes global shared metadata lock. sql/ha_ndbcluster_binlog.cc: Adjusted code to work with new metadata locking subsystem. close_cached_tables() no longer has wait_for_placeholder argument. Instead of relying on this parameter and related behavior FLUSH TABLES WITH READ LOCK now takes global shared metadata lock. sql/handler.cc: update_frm_version(): Directly update TABLE_SHARE::mysql_version member instead of going through all TABLE instances for this table (old code was a legacy from pre-table-definition-cache days). sql/lock.cc: Use new metadata locking subsystem. Threw away most of functions related to name locking as now one is supposed to use metadata locking API instead. In lock_global_read_lock() and unlock_global_read_lock() in order to avoid problems with global read lock sneaking in at the moment when we perform FLUSH TABLES or ALTER TABLE under LOCK TABLES and when tables being reopened are protected only by metadata locks we also have to take global shared meta data lock. sql/log_event.cc: Adjusted code to work with new metadata locking subsystem. For tables open by slave thread for applying RBR events allocate memory for lock request object in the same chunk of memory as TABLE_LIST objects for them. In order to ensure that we keep these objects around until tables are open always close tables before calling Relay_log_info::clear_tables_to_lock(). Use new auxiliary Relay_log_info::slave_close_thread_tables() method to enforce this. sql/log_event_old.cc: Adjusted code to work with new metadata locking subsystem. Since for tables open by slave thread for applying RBR events memory for lock request object is allocated in the same chunk of memory as TABLE_LIST objects for them we have to ensure that we keep these objects around until tables are open. To ensure this we always close tables before calling Relay_log_info::clear_tables_to_lock(). To enfore this we use new auxiliary Relay_log_info::slave_close_thread_tables() method. sql/mdl.cc: Implemented new metadata locking subsystem and API described in WL3726 "DDL locking for all metadata objects". sql/mdl.h: Implemented new metadata locking subsystem and API described in WL3726 "DDL locking for all metadata objects". sql/mysql_priv.h: - close_thread_tables()/close_tables_for_reopen() now has one more argument which indicates that metadata locks should be released but not removed from the context in order to be used later in mdl_wait_for_locks() and tdc_wait_for_old_version(). - close_cached_table() routine is no longer public. - Thread waiting in wait_while_table_is_used() can be now killed so this function returns boolean to make caller aware of such situation. - We no longer have table cache as separate entity instead used and unused TABLE instances are linked to TABLE_SHARE objects in table definition cache. - Now third argument of open_table() is also used for requesting table repair or auto-discovery of table's new definition. So its type was changed from bool to enum. - Added tdc_open_view() function for opening view by getting its definition from disk (and table cache in future). - reopen_name_locked_table() no longer needs "link_in" argument as now we have exclusive metadata locks instead of dummy TABLE instances when this function is called. - find_locked_table() now takes head of list of TABLE instances instead of always scanning through THD::open_tables list. Also added find_write_locked_table() auxiliary. - reopen_tables(), close_cached_tables() no longer have mark_share_as_old and wait_for_placeholder arguments. Instead of relying on this parameters and related behavior FLUSH TABLES WITH READ LOCK now takes global shared metadata lock. - We no longer need drop_locked_tables() and abort_locked_tables(). - mysql_ha_rm_tables() now always assume that LOCK_open is not acquired by caller. - Added notify_thread_having_shared_lock() callback invoked by metadata locking subsystem when acquiring an exclusive lock, for each thread that has a conflicting shared metadata lock. - Introduced expel_table_from_cache() as replacement for remove_table_from_cache() (the main difference is that this new function assumes that caller follows metadata locking protocol and never waits). - Threw away most of functions related to name locking. One should use new metadata locking subsystem and API instead. sql/mysqld.cc: Got rid of call initializing/deinitializing table cache since now it is embedded into table definition cache. Added calls for initializing/ deinitializing metadata locking subsystem. sql/rpl_rli.cc: Introduced auxiliary Relay_log_info::slave_close_thread_tables() method which is used for enforcing that we always close tables open for RBR before deallocating TABLE_LIST elements and MDL_LOCK objects for them. sql/rpl_rli.h: Introduced auxiliary Relay_log_info::slave_close_thread_tables() method which is used for enforcing that we always close tables open for RBR before deallocating TABLE_LIST elements and MDL_LOCK objects for them. sql/set_var.cc: close_cached_tables() no longer has wait_for_placeholder argument. Instead of relying on this parameter and related behavior FLUSH TABLES WITH READ LOCK now takes global shared metadata lock. sql/sp_head.cc: For tables added to the statement's table list by prelocking algorithm we allocate these objects either on the same memory as corresponding table list elements or on THD::locked_tables_root (if we are building table list for LOCK TABLES). sql/sql_acl.cc: Allocate metadata lock requests objects (MDL_LOCK) on execution memory root in cases when we use stack TABLE_LIST objects to open tables. Got rid of redundant code by using unlock_locked_tables() function. sql/sql_base.cc: Changed code to use new MDL subsystem. Got rid of separate table cache. Now used and unused TABLE instances are linked to the TABLE_SHAREs in table definition cache. check_unused(): Adjusted code to the fact that we no longer have separate table cache. Removed dead code. table_def_free(): Free TABLE instances referenced from TABLE_SHARE objects before destroying table definition cache. get_table_share(): Added assert which ensures that noone will be able to access table (and its share) without acquiring some kind of metadata lock first. close_handle_and_leave_table_as_lock(): Adjusted code to the fact that TABLE instances now are linked to list in TABLE_SHARE. list_open_tables(): Changed this function to use table definition cache instead of table cache. free_cache_entry(): Unlink freed TABLE elements from the list of all TABLE instances for the table in TABLE_SHARE. kill_delayed_thread_for_table(): Added auxiliary for killing delayed insert threads for particular table. close_cached_tables(): Got rid of wait_for_refresh argument as we now rely on global shared metadata lock to prevent FLUSH WITH READ LOCK sneaking in when we are reopening tables. Heavily reworked this function to use new MDL code and not to rely on separate table cache entity. close_open_tables(): We no longer have separate table cache. close_thread_tables(): Release metadata locks after closing all tables. Added skip_mdl argument which allows us not to remove metadata lock requests from the context in case when we are going to use this requests later in mdl_wait_for_locks() and tdc_wait_for_old_versions(). close_thread_table()/close_table_for_reopen(): Since we no longer have separate table cache and all TABLE instances are linked to TABLE_SHARE objects in table definition cache we have to link/unlink TABLE object to/from appropriate lists in the share. name_lock_locked_table(): Moved redundant code to find_write_locked_table() function and adjusted code to the fact that wait_while_table_is_used() can now return with an error if our thread is killed. reopen_table_entry(): We no longer need "link_in" argument as with MDL we no longer call this function with dummy TABLE object pre-allocated and added to the THD::open_tables. Also now we add newly-open TABLE instance to the list of share's used TABLE instances. table_cache_insert_placeholder(): Got rid of name-locking legacy. lock_table_name_if_not_cached(): Moved to sql_table.cc the only place where it is used. It was also reimplemented using new MDL API. open_table(): - Reworked this function to use new MDL subsystem. - Changed code to deal with table definition cache directly instead of going through separate table cache. - Now third argument is also used for requesting table repair or auto-discovery of table's new definition. So its type was changed from bool to enum. find_locked_table()/find_write_locked_table(): Accept head of list of TABLE objects as first argument and use this list instead of always searching in THD::open_tables list. Also added auxiliary for finding write-locked locked tables. reopen_table(): Adjusted function to work with new MDL subsystem and to properly manuipulate with lists of used/unused TABLE instaces in TABLE_SHARE. reopen_tables(): Removed mark_share_as_old parameter. Instead of relying on it and related behavior FLUSH TABLES WITH READ LOCK now takes global shared metadata lock. Changed code after removing separate table cache. drop_locked_tables()/abort_locked_tables(): Got rid of functions which are no longer needed. unlock_locked_tables(): Moved this function from sql_parse.cc and changed it to release memory which was used for allocating metadata lock requests for tables open and locked by LOCK TABLES. tdc_open_view(): Intoduced function for opening a view by getting its definition from disk (and table cache in future). reopen_table_entry(): Introduced function for opening table definitions while holding exclusive metatadata lock on it. open_unireg_entry(): Got rid of this function. Most of its functionality is relocated to open_table() and open_table_fini() functions, and some of it to reopen_table_entry() and tdc_open_view(). Also code resposible for auto-repair and auto-discovery of tables was moved to separate function. open_table_entry_fini(): Introduced function which contains common actions which finalize process of TABLE object creation. auto_repair_table(): Moved code responsible for auto-repair of table being opened here. handle_failed_open_table_attempt() Moved code responsible for handling failing attempt to open table to one place (retry due to lock conflict/old version, auto-discovery and repair). open_tables(): - Flush open HANDLER tables if they have old version of if there is conflicting metadata lock against them (before this moment we had this code in open_table()). - When we open view which should be processed via derived table on the second execution of prepared statement or stored routine we still should call open_table() for it in order to obtain metadata lock on it and prepare its security context. - In cases when we discover that some special handling of failure to open table is needed call handle_failed_open_table_attempt() which handles all such scenarios. open_ltable(): Handling of various special scenarios of failure to open a table was moved to separate handle_failed_open_table_attempt() function. remove_db_from_cache(): Removed this function as it is no longer used. notify_thread_having_shared_lock(): Added callback which is invoked by MDL subsystem when acquiring an exclusive lock, for each thread that has a conflicting shared metadata lock. expel_table_from_cache(): Introduced function for removing unused TABLE instances. Unlike remove_table_from_cache() it relies on caller following MDL protocol and having appropriate locks when calling it and thus does not do any waiting if table is still in use. tdc_wait_for_old_version(): Added function which allows open_tables() to wait in cases when we discover that we should back-off due to presence of old version of table. abort_and_upgrade_lock(): Use new MDL calls. mysql_wait_completed_table(): Got rid of unused function. open_system_tables_for_read/for_update()/performance_schema_table(): Allocate MDL_LOCK objects on execution memory root in cases when TABLE_LIST objects for corresponding tables is allocated on stack. close_performance_schema_table(): Release metadata locks after closing tables. ****** Use I_P_List for free/used tables list in the table share. sql/sql_binlog.cc: Use Relay_log_info::slave_close_thread_tables() method to enforce that we always close tables open for RBR before deallocating TABLE_LIST elements and MDL_LOCK objects for them. sql/sql_class.cc: Added meta-data locking contexts as part of Open_tables_state context. Also introduced THD::locked_tables_root memory root which is to be used for allocating MDL_LOCK objects for tables in LOCK TABLES statement (end of lifetime for such objects is UNLOCK TABLES so we can't use statement or execution root for them). sql/sql_class.h: Added meta-data locking contexts as part of Open_tables_state context. Also introduced THD::locked_tables_root memory root which is to be used for allocating MDL_LOCK objects for tables in LOCK TABLES statement (end of lifetime for such objects is UNLOCK TABLES so we can't use statement or execution root for them). Note: handler_mdl_context and locked_tables_root and mdl_el_root will be removed by subsequent patches. sql/sql_db.cc: mysql_rm_db() does not really need to call remove_db_from_cache() as it drops each table in the database using mysql_rm_table_part2(), which performs all necessary operations on table (definition) cache. sql/sql_delete.cc: Use the new metadata locking API for TRUNCATE. sql/sql_handler.cc: Changed HANDLER implementation to use new metadata locking subsystem. Note that MDL_LOCK objects for HANDLER tables are allocated in the same chunk of heap memory as TABLE_LIST object for those tables. sql/sql_insert.cc: mysql_insert(): find_locked_table() now takes head of list of TABLE object as its argument instead of always scanning through THD::open_tables list. handle_delayed_insert(): Allocate metadata lock request object for table open by delayed insert thread on execution memroot. create_table_from_items(): We no longer allocate dummy TABLE objects for tables being created if they don't exist. As consequence reopen_name_locked_table() no longer has link_in argument. open_table() now has one more argument which is not relevant for temporary tables. sql/sql_parse.cc: - Moved unlock_locked_tables() routine to sql_base.cc and made available it in other files. Got rid of some redundant code by using this function. - Replaced boolean TABLE_LIST::create member with enum open_table_type member. - Use special memory root for allocating MDL_LOCK objects for tables open and locked by LOCK TABLES (these object should live till UNLOCK TABLES so we can't allocate them on statement nor execution memory root). Also properly set metadata lock upgradability attribure for those tables. - Under LOCK TABLES it is no longer allowed to flush tables which are not write-locked as this breaks metadata locking protocol and thus potentially might lead to deadlock. - Added auxiliary adjust_mdl_locks_upgradability() function. sql/sql_partition.cc: Adjusted code to the fact that reopen_tables() no longer has "mark_share_as_old" argument. Got rid of comments which are no longer true. sql/sql_plist.h: Added I_P_List template class for parametrized intrusive doubly linked lists and I_P_List_iterator for corresponding iterator. Unlike for I_List<> list elements of such list can participate in several lists. Unlike List<> such lists are doubly-linked and intrusive. sql/sql_plugin.cc: Allocate metadata lock requests objects (MDL_LOCK) on execution memory root in cases when we use stack TABLE_LIST objects to open tables. sql/sql_prepare.cc: Replaced boolean TABLE_LIST::create member with enum open_table_type member. This allows easily handle situation in which instead of opening the table we want only to take exclusive metadata lock on it. sql/sql_rename.cc: Use new metadata locking subsystem in implementation of RENAME TABLE. sql/sql_servers.cc: Allocate metadata lock requests objects (MDL_LOCK) on execution memory root in cases when we use stack TABLE_LIST objects to open tables. Got rid of redundant code by using unlock_locked_tables() function. sql/sql_show.cc: Acquire shared metadata lock when we are getting information for I_S table directly from TABLE_SHARE without doing full-blown table open. We use high priority lock request in this situation in order to avoid deadlocks. Also allocate metadata lock requests objects (MDL_LOCK) on execution memory root in cases when TABLE_LIST objects are also allocated there sql/sql_table.cc: mysql_rm_table(): Removed comment which is no longer relevant. mysql_rm_table_part2(): Now caller of mysql_ha_rm_tables() should not own LOCK_open. Adjusted code to use new metadata locking subsystem instead of name-locks. lock_table_name_if_not_cached(): Moved this function from sql_base.cc to this file and reimplemented it using metadata locking API. mysql_create_table(): Adjusted code to use new MDL API. wait_while_table_is_used(): Changed function to use new MDL subsystem. Made thread waiting in it killable (this also led to introduction of return value so caller can distinguish successful executions from situations when waiting was aborted). close_cached_tables(): Thread waiting in this function is killable now. As result it has return value for distinguishing between succes and failure. Got rid of redundant boradcast_refresh() call. prepare_for_repair(): Use MDL subsystem instead of name-locks. mysql_admin_table(): mysql_ha_rm_tables() now always assumes that caller doesn't own LOCK_open. mysql_repair_table(): We should mark all elements of table list as requiring upgradable metadata locks. mysql_create_table_like(): Use new MDL subsystem instead of name-locks. create_temporary_tables(): We don't need to obtain metadata locks when creating temporary table. mysql_fast_or_online_alter_table(): Thread waiting in wait_while_table_is_used() is now killable. mysql_alter_table(): Adjusted code to work with new MDL subsystem and to the fact that threads waiting in what_while_table_is_used() and close_cached_table() are now killable. sql/sql_test.cc: We no longer have separate table cache. TABLE instances are now associated with/linked to TABLE_SHARE objects in table definition cache. sql/sql_trigger.cc: Adjusted code to work with new metadata locking subsystem. Also reopen_tables() no longer has mark_share_as_old argument (Instead of relying on this parameter and related behavior FLUSH TABLES WITH READ LOCK now takes global shared metadata lock). sql/sql_udf.cc: Allocate metadata lock requests objects (MDL_LOCK) on execution memory root in cases when we use stack TABLE_LIST objects to open tables. sql/sql_update.cc: Adjusted code to work with new meta-data locking subsystem. sql/sql_view.cc: Added proper meta-data locking to implementations of CREATE/ALTER/DROP VIEW statements. Now we obtain exclusive meta-data lock on a view before creating/ changing/dropping it. This ensures that all concurrent statements that use this view will finish before our statement will proceed and therefore we will get correct order of statements in the binary log. Also ensure that TABLE_LIST::mdl_upgradable attribute is properly propagated for underlying tables of view. sql/table.cc: Added auxiliary alloc_mdl_locks() function for allocating metadata lock request objects for all elements of table list. sql/table.h: TABLE_SHARE: Got rid of unused members. Introduced members for storing lists of used and unused TABLE objects for this share. TABLE: Added members for linking TABLE objects into per-share lists of used and unused TABLE instances. Added member for holding pointer to metadata lock for this table. TABLE_LIST: Replaced boolean TABLE_LIST::create member with enum open_table_type member. This allows easily handle situation in which instead of opening the table we want only to take exclusive meta-data lock on it (we need this in order to handle ALTER VIEW and CREATE VIEW statements). Introduced new mdl_upgradable member for marking elements of table list for which we need to take upgradable shared metadata lock instead of plain shared metadata lock. Added pointer for holding pointer to MDL_LOCK for the table. Added auxiliary alloc_mdl_locks() function for allocating metadata lock requests objects for all elements of table list. Added auxiliary set_all_mdl_upgradable() function for marking all elements in table list as requiring upgradable metadata locks. storage/myisammrg/ha_myisammrg.cc: Allocate MDL_LOCK objects for underlying tables of MERGE table. To be reworked once Ingo pushes his patch for WL4144.
837 lines
24 KiB
C++
837 lines
24 KiB
C++
/* Copyright (C) 2000-2004 MySQL AB
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
/* HANDLER ... commands - direct access to ISAM */
|
|
|
|
/* TODO:
|
|
HANDLER blabla OPEN [ AS foobar ] [ (column-list) ]
|
|
|
|
the most natural (easiest, fastest) way to do it is to
|
|
compute List<Item> field_list not in mysql_ha_read
|
|
but in mysql_ha_open, and then store it in TABLE structure.
|
|
|
|
The problem here is that mysql_parse calls free_item to free all the
|
|
items allocated at the end of every query. The workaround would to
|
|
keep two item lists per THD - normal free_list and handler_items.
|
|
The second is to be freeed only on thread end. mysql_ha_open should
|
|
then do { handler_items=concat(handler_items, free_list); free_list=0; }
|
|
|
|
But !!! do_command calls free_root at the end of every query and frees up
|
|
all the sql_alloc'ed memory. It's harder to work around...
|
|
*/
|
|
|
|
/*
|
|
There are two containers holding information about open handler tables.
|
|
The first is 'thd->handler_tables'. It is a linked list of TABLE objects.
|
|
It is used like 'thd->open_tables' in the table cache. The trick is to
|
|
exchange these two lists during open and lock of tables. Thus the normal
|
|
table cache code can be used.
|
|
The second container is a HASH. It holds objects of the type TABLE_LIST.
|
|
Despite its name, no lists of tables but only single structs are hashed
|
|
(the 'next' pointer is always NULL). The reason for theis second container
|
|
is, that we want handler tables to survive FLUSH TABLE commands. A table
|
|
affected by FLUSH TABLE must be closed so that other threads are not
|
|
blocked by handler tables still in use. Since we use the normal table cache
|
|
functions with 'thd->handler_tables', the closed tables are removed from
|
|
this list. Hence we need the original open information for the handler
|
|
table in the case that it is used again. This information is handed over
|
|
to mysql_ha_open() as a TABLE_LIST. So we store this information in the
|
|
second container, where it is not affected by FLUSH TABLE. The second
|
|
container is implemented as a hash for performance reasons. Consequently,
|
|
we use it not only for re-opening a handler table, but also for the
|
|
HANDLER ... READ commands. For this purpose, we store a pointer to the
|
|
TABLE structure (in the first container) in the TBALE_LIST object in the
|
|
second container. When the table is flushed, the pointer is cleared.
|
|
*/
|
|
|
|
#include "mysql_priv.h"
|
|
#include "sql_select.h"
|
|
#include <assert.h>
|
|
|
|
#define HANDLER_TABLES_HASH_SIZE 120
|
|
|
|
static enum enum_ha_read_modes rkey_to_rnext[]=
|
|
{ RNEXT_SAME, RNEXT, RPREV, RNEXT, RPREV, RNEXT, RPREV, RPREV };
|
|
|
|
/*
|
|
Get hash key and hash key length.
|
|
|
|
SYNOPSIS
|
|
mysql_ha_hash_get_key()
|
|
tables Pointer to the hash object.
|
|
key_len_p (out) Pointer to the result for key length.
|
|
first Unused.
|
|
|
|
DESCRIPTION
|
|
The hash object is an TABLE_LIST struct.
|
|
The hash key is the alias name.
|
|
The hash key length is the alias name length plus one for the
|
|
terminateing NUL character.
|
|
|
|
RETURN
|
|
Pointer to the TABLE_LIST struct.
|
|
*/
|
|
|
|
static char *mysql_ha_hash_get_key(TABLE_LIST *tables, size_t *key_len_p,
|
|
my_bool first __attribute__((unused)))
|
|
{
|
|
*key_len_p= strlen(tables->alias) + 1 ; /* include '\0' in comparisons */
|
|
return tables->alias;
|
|
}
|
|
|
|
|
|
/*
|
|
Free an hash object.
|
|
|
|
SYNOPSIS
|
|
mysql_ha_hash_free()
|
|
tables Pointer to the hash object.
|
|
|
|
DESCRIPTION
|
|
The hash object is an TABLE_LIST struct.
|
|
|
|
RETURN
|
|
Nothing
|
|
*/
|
|
|
|
static void mysql_ha_hash_free(TABLE_LIST *tables)
|
|
{
|
|
my_free((char*) tables, MYF(0));
|
|
}
|
|
|
|
/**
|
|
Close a HANDLER table.
|
|
|
|
@param thd Thread identifier.
|
|
@param tables A list of tables with the first entry to close.
|
|
|
|
@note Though this function takes a list of tables, only the first list entry
|
|
will be closed.
|
|
@note Broadcasts refresh if it closed a table with old version.
|
|
*/
|
|
|
|
static void mysql_ha_close_table(THD *thd, TABLE_LIST *tables)
|
|
{
|
|
TABLE **table_ptr;
|
|
MDL_LOCK *mdl_lock;
|
|
|
|
/*
|
|
Though we could take the table pointer from hash_tables->table,
|
|
we must follow the thd->handler_tables chain anyway, as we need the
|
|
address of the 'next' pointer referencing this table
|
|
for close_thread_table().
|
|
*/
|
|
for (table_ptr= &(thd->handler_tables);
|
|
*table_ptr && (*table_ptr != tables->table);
|
|
table_ptr= &(*table_ptr)->next)
|
|
;
|
|
|
|
if (*table_ptr)
|
|
{
|
|
(*table_ptr)->file->ha_index_or_rnd_end();
|
|
mdl_lock= (*table_ptr)->mdl_lock;
|
|
pthread_mutex_lock(&LOCK_open);
|
|
if (close_thread_table(thd, table_ptr))
|
|
{
|
|
/* Tell threads waiting for refresh that something has happened */
|
|
broadcast_refresh();
|
|
}
|
|
pthread_mutex_unlock(&LOCK_open);
|
|
mdl_release_lock(&thd->handler_mdl_context, mdl_lock);
|
|
}
|
|
else if (tables->table)
|
|
{
|
|
/* Must be a temporary table */
|
|
TABLE *table= tables->table;
|
|
table->file->ha_index_or_rnd_end();
|
|
table->query_id= thd->query_id;
|
|
table->open_by_handler= 0;
|
|
}
|
|
|
|
/* Mark table as closed, ready for re-open if necessary. */
|
|
tables->table= NULL;
|
|
}
|
|
|
|
/*
|
|
Open a HANDLER table.
|
|
|
|
SYNOPSIS
|
|
mysql_ha_open()
|
|
thd Thread identifier.
|
|
tables A list of tables with the first entry to open.
|
|
reopen Re-open a previously opened handler table.
|
|
|
|
DESCRIPTION
|
|
Though this function takes a list of tables, only the first list entry
|
|
will be opened.
|
|
'reopen' is set when a handler table is to be re-opened. In this case,
|
|
'tables' is the pointer to the hashed TABLE_LIST object which has been
|
|
saved on the original open.
|
|
'reopen' is also used to suppress the sending of an 'ok' message.
|
|
|
|
RETURN
|
|
FALSE OK
|
|
TRUE Error
|
|
*/
|
|
|
|
bool mysql_ha_open(THD *thd, TABLE_LIST *tables, bool reopen)
|
|
{
|
|
TABLE_LIST *hash_tables = NULL;
|
|
MDL_LOCK *mdl_lock;
|
|
char *db, *name, *alias, *mdlkey;
|
|
uint dblen, namelen, aliaslen, counter;
|
|
int error;
|
|
TABLE *backup_open_tables;
|
|
MDL_CONTEXT backup_mdl_context;
|
|
DBUG_ENTER("mysql_ha_open");
|
|
DBUG_PRINT("enter",("'%s'.'%s' as '%s' reopen: %d",
|
|
tables->db, tables->table_name, tables->alias,
|
|
(int) reopen));
|
|
|
|
if (tables->schema_table)
|
|
{
|
|
my_error(ER_WRONG_USAGE, MYF(0), "HANDLER OPEN",
|
|
INFORMATION_SCHEMA_NAME.str);
|
|
DBUG_PRINT("exit",("ERROR"));
|
|
DBUG_RETURN(TRUE);
|
|
}
|
|
|
|
if (! my_hash_inited(&thd->handler_tables_hash))
|
|
{
|
|
/*
|
|
HASH entries are of type TABLE_LIST.
|
|
*/
|
|
if (my_hash_init(&thd->handler_tables_hash, &my_charset_latin1,
|
|
HANDLER_TABLES_HASH_SIZE, 0, 0,
|
|
(my_hash_get_key) mysql_ha_hash_get_key,
|
|
(my_hash_free_key) mysql_ha_hash_free, 0))
|
|
{
|
|
DBUG_PRINT("exit",("ERROR"));
|
|
DBUG_RETURN(TRUE);
|
|
}
|
|
}
|
|
else if (! reopen) /* Otherwise we have 'tables' already. */
|
|
{
|
|
if (my_hash_search(&thd->handler_tables_hash, (uchar*) tables->alias,
|
|
strlen(tables->alias) + 1))
|
|
{
|
|
DBUG_PRINT("info",("duplicate '%s'", tables->alias));
|
|
DBUG_PRINT("exit",("ERROR"));
|
|
my_error(ER_NONUNIQ_TABLE, MYF(0), tables->alias);
|
|
DBUG_RETURN(TRUE);
|
|
}
|
|
}
|
|
|
|
if (! reopen)
|
|
{
|
|
/* copy the TABLE_LIST struct */
|
|
dblen= strlen(tables->db) + 1;
|
|
namelen= strlen(tables->table_name) + 1;
|
|
aliaslen= strlen(tables->alias) + 1;
|
|
if (!(my_multi_malloc(MYF(MY_WME),
|
|
&hash_tables, (uint) sizeof(*hash_tables),
|
|
&db, (uint) dblen,
|
|
&name, (uint) namelen,
|
|
&alias, (uint) aliaslen,
|
|
&mdl_lock, sizeof(MDL_LOCK),
|
|
&mdlkey, MAX_DBKEY_LENGTH,
|
|
NullS)))
|
|
{
|
|
DBUG_PRINT("exit",("ERROR"));
|
|
DBUG_RETURN(TRUE);
|
|
}
|
|
/* structure copy */
|
|
*hash_tables= *tables;
|
|
hash_tables->db= db;
|
|
hash_tables->table_name= name;
|
|
hash_tables->alias= alias;
|
|
memcpy(hash_tables->db, tables->db, dblen);
|
|
memcpy(hash_tables->table_name, tables->table_name, namelen);
|
|
memcpy(hash_tables->alias, tables->alias, aliaslen);
|
|
mdl_init_lock(mdl_lock, mdlkey, 0, db, name);
|
|
hash_tables->mdl_lock= mdl_lock;
|
|
|
|
/* add to hash */
|
|
if (my_hash_insert(&thd->handler_tables_hash, (uchar*) hash_tables))
|
|
{
|
|
my_free((char*) hash_tables, MYF(0));
|
|
DBUG_PRINT("exit",("ERROR"));
|
|
DBUG_RETURN(TRUE);
|
|
}
|
|
}
|
|
else
|
|
hash_tables= tables;
|
|
|
|
/*
|
|
Save and reset the open_tables list so that open_tables() won't
|
|
be able to access (or know about) the previous list. And on return
|
|
from open_tables(), thd->open_tables will contain only the opened
|
|
table.
|
|
|
|
The thd->handler_tables list is kept as-is to avoid deadlocks if
|
|
open_table(), called by open_tables(), needs to back-off because
|
|
of a pending name-lock on the table being opened.
|
|
|
|
See open_table() back-off comments for more details.
|
|
*/
|
|
backup_open_tables= thd->open_tables;
|
|
thd->open_tables= NULL;
|
|
mdl_context_backup_and_reset(&thd->mdl_context, &backup_mdl_context);
|
|
|
|
/*
|
|
open_tables() will set 'hash_tables->table' if successful.
|
|
It must be NULL for a real open when calling open_tables().
|
|
*/
|
|
DBUG_ASSERT(! hash_tables->table);
|
|
|
|
/* for now HANDLER can be used only for real TABLES */
|
|
hash_tables->required_type= FRMTYPE_TABLE;
|
|
/*
|
|
We use open_tables() here, rather than, say,
|
|
open_ltable() or open_table() because we would like to be able
|
|
to open a temporary table.
|
|
*/
|
|
error= open_tables(thd, &hash_tables, &counter, 0);
|
|
if (thd->open_tables)
|
|
{
|
|
if (thd->open_tables->next)
|
|
{
|
|
/*
|
|
We opened something that is more than a single table.
|
|
This happens with MERGE engine. Don't try to link
|
|
this mess into thd->handler_tables list, close it
|
|
and report an error. We must do it right away
|
|
because mysql_ha_close_table(), called down the road,
|
|
can close a single table only.
|
|
*/
|
|
close_thread_tables(thd);
|
|
my_error(ER_ILLEGAL_HA, MYF(0), tables->alias);
|
|
error= 1;
|
|
}
|
|
else
|
|
{
|
|
/* Merge the opened table into handler_tables list. */
|
|
thd->open_tables->next= thd->handler_tables;
|
|
thd->handler_tables= thd->open_tables;
|
|
}
|
|
}
|
|
mdl_context_merge(&thd->handler_mdl_context, &thd->mdl_context);
|
|
|
|
thd->open_tables= backup_open_tables;
|
|
mdl_context_restore(&thd->mdl_context, &backup_mdl_context);
|
|
|
|
if (error)
|
|
goto err;
|
|
|
|
/* There can be only one table in '*tables'. */
|
|
if (! (hash_tables->table->file->ha_table_flags() & HA_CAN_SQL_HANDLER))
|
|
{
|
|
my_error(ER_ILLEGAL_HA, MYF(0), tables->alias);
|
|
goto err;
|
|
}
|
|
|
|
/*
|
|
If it's a temp table, don't reset table->query_id as the table is
|
|
being used by this handler. Otherwise, no meaning at all.
|
|
*/
|
|
hash_tables->table->open_by_handler= 1;
|
|
|
|
if (! reopen)
|
|
my_ok(thd);
|
|
DBUG_PRINT("exit",("OK"));
|
|
DBUG_RETURN(FALSE);
|
|
|
|
err:
|
|
if (hash_tables->table)
|
|
mysql_ha_close_table(thd, hash_tables);
|
|
if (!reopen)
|
|
my_hash_delete(&thd->handler_tables_hash, (uchar*) hash_tables);
|
|
DBUG_PRINT("exit",("ERROR"));
|
|
DBUG_RETURN(TRUE);
|
|
}
|
|
|
|
|
|
/*
|
|
Close a HANDLER table by alias or table name
|
|
|
|
SYNOPSIS
|
|
mysql_ha_close()
|
|
thd Thread identifier.
|
|
tables A list of tables with the first entry to close.
|
|
|
|
DESCRIPTION
|
|
Closes the table that is associated (on the handler tables hash) with the
|
|
name (table->alias) of the specified table.
|
|
|
|
RETURN
|
|
FALSE ok
|
|
TRUE error
|
|
*/
|
|
|
|
bool mysql_ha_close(THD *thd, TABLE_LIST *tables)
|
|
{
|
|
TABLE_LIST *hash_tables;
|
|
DBUG_ENTER("mysql_ha_close");
|
|
DBUG_PRINT("enter",("'%s'.'%s' as '%s'",
|
|
tables->db, tables->table_name, tables->alias));
|
|
|
|
if ((hash_tables= (TABLE_LIST*) my_hash_search(&thd->handler_tables_hash,
|
|
(uchar*) tables->alias,
|
|
strlen(tables->alias) + 1)))
|
|
{
|
|
mysql_ha_close_table(thd, hash_tables);
|
|
my_hash_delete(&thd->handler_tables_hash, (uchar*) hash_tables);
|
|
}
|
|
else
|
|
{
|
|
my_error(ER_UNKNOWN_TABLE, MYF(0), tables->alias, "HANDLER");
|
|
DBUG_PRINT("exit",("ERROR"));
|
|
DBUG_RETURN(TRUE);
|
|
}
|
|
|
|
my_ok(thd);
|
|
DBUG_PRINT("exit", ("OK"));
|
|
DBUG_RETURN(FALSE);
|
|
}
|
|
|
|
|
|
/*
|
|
Read from a HANDLER table.
|
|
|
|
SYNOPSIS
|
|
mysql_ha_read()
|
|
thd Thread identifier.
|
|
tables A list of tables with the first entry to read.
|
|
mode
|
|
keyname
|
|
key_expr
|
|
ha_rkey_mode
|
|
cond
|
|
select_limit_cnt
|
|
offset_limit_cnt
|
|
|
|
RETURN
|
|
FALSE ok
|
|
TRUE error
|
|
*/
|
|
|
|
bool mysql_ha_read(THD *thd, TABLE_LIST *tables,
|
|
enum enum_ha_read_modes mode, char *keyname,
|
|
List<Item> *key_expr,
|
|
enum ha_rkey_function ha_rkey_mode, Item *cond,
|
|
ha_rows select_limit_cnt, ha_rows offset_limit_cnt)
|
|
{
|
|
TABLE_LIST *hash_tables;
|
|
TABLE *table, *backup_open_tables;
|
|
MYSQL_LOCK *lock;
|
|
List<Item> list;
|
|
Protocol *protocol= thd->protocol;
|
|
char buff[MAX_FIELD_WIDTH];
|
|
String buffer(buff, sizeof(buff), system_charset_info);
|
|
int error, keyno= -1;
|
|
uint num_rows;
|
|
uchar *UNINIT_VAR(key);
|
|
uint UNINIT_VAR(key_len);
|
|
bool need_reopen;
|
|
DBUG_ENTER("mysql_ha_read");
|
|
DBUG_PRINT("enter",("'%s'.'%s' as '%s'",
|
|
tables->db, tables->table_name, tables->alias));
|
|
|
|
thd->lex->select_lex.context.resolve_in_table_list_only(tables);
|
|
list.push_front(new Item_field(&thd->lex->select_lex.context,
|
|
NULL, NULL, "*"));
|
|
List_iterator<Item> it(list);
|
|
it++;
|
|
|
|
retry:
|
|
if ((hash_tables= (TABLE_LIST*) my_hash_search(&thd->handler_tables_hash,
|
|
(uchar*) tables->alias,
|
|
strlen(tables->alias) + 1)))
|
|
{
|
|
table= hash_tables->table;
|
|
DBUG_PRINT("info-in-hash",("'%s'.'%s' as '%s' table: 0x%lx",
|
|
hash_tables->db, hash_tables->table_name,
|
|
hash_tables->alias, (long) table));
|
|
if (!table)
|
|
{
|
|
/*
|
|
The handler table has been closed. Re-open it.
|
|
*/
|
|
if (mysql_ha_open(thd, hash_tables, 1))
|
|
{
|
|
DBUG_PRINT("exit",("reopen failed"));
|
|
goto err0;
|
|
}
|
|
|
|
table= hash_tables->table;
|
|
DBUG_PRINT("info",("re-opened '%s'.'%s' as '%s' tab %p",
|
|
hash_tables->db, hash_tables->table_name,
|
|
hash_tables->alias, table));
|
|
}
|
|
table->pos_in_table_list= tables;
|
|
#if MYSQL_VERSION_ID < 40100
|
|
if (*tables->db && strcmp(table->table_cache_key, tables->db))
|
|
{
|
|
DBUG_PRINT("info",("wrong db"));
|
|
table= NULL;
|
|
}
|
|
#endif
|
|
}
|
|
else
|
|
table= NULL;
|
|
|
|
if (!table)
|
|
{
|
|
#if MYSQL_VERSION_ID < 40100
|
|
char buff[MAX_DBKEY_LENGTH];
|
|
if (*tables->db)
|
|
strxnmov(buff, sizeof(buff)-1, tables->db, ".", tables->table_name,
|
|
NullS);
|
|
else
|
|
strncpy(buff, tables->alias, sizeof(buff));
|
|
my_error(ER_UNKNOWN_TABLE, MYF(0), buff, "HANDLER");
|
|
#else
|
|
my_error(ER_UNKNOWN_TABLE, MYF(0), tables->alias, "HANDLER");
|
|
#endif
|
|
goto err0;
|
|
}
|
|
tables->table=table;
|
|
|
|
/* save open_tables state */
|
|
backup_open_tables= thd->open_tables;
|
|
/*
|
|
mysql_lock_tables() needs thd->open_tables to be set correctly to
|
|
be able to handle aborts properly. When the abort happens, it's
|
|
safe to not protect thd->handler_tables because it won't close any
|
|
tables.
|
|
*/
|
|
thd->open_tables= thd->handler_tables;
|
|
|
|
lock= mysql_lock_tables(thd, &tables->table, 1,
|
|
MYSQL_LOCK_NOTIFY_IF_NEED_REOPEN, &need_reopen);
|
|
|
|
/* restore previous context */
|
|
thd->open_tables= backup_open_tables;
|
|
|
|
if (need_reopen)
|
|
{
|
|
mysql_ha_close_table(thd, hash_tables);
|
|
/*
|
|
The lock might have been aborted, we need to manually reset
|
|
thd->some_tables_deleted because handler's tables are closed
|
|
in a non-standard way. Otherwise we might loop indefinitely.
|
|
*/
|
|
thd->some_tables_deleted= 0;
|
|
goto retry;
|
|
}
|
|
|
|
if (!lock)
|
|
goto err0; // mysql_lock_tables() printed error message already
|
|
|
|
// Always read all columns
|
|
tables->table->read_set= &tables->table->s->all_set;
|
|
|
|
if (cond)
|
|
{
|
|
if (table->query_id != thd->query_id)
|
|
cond->cleanup(); // File was reopened
|
|
if ((!cond->fixed &&
|
|
cond->fix_fields(thd, &cond)) || cond->check_cols(1))
|
|
goto err;
|
|
}
|
|
|
|
if (keyname)
|
|
{
|
|
if ((keyno=find_type(keyname, &table->s->keynames, 1+2)-1)<0)
|
|
{
|
|
my_error(ER_KEY_DOES_NOT_EXITS, MYF(0), keyname, tables->alias);
|
|
goto err;
|
|
}
|
|
}
|
|
|
|
if (insert_fields(thd, &thd->lex->select_lex.context,
|
|
tables->db, tables->alias, &it, 0))
|
|
goto err;
|
|
|
|
protocol->send_result_set_metadata(&list, Protocol::SEND_NUM_ROWS | Protocol::SEND_EOF);
|
|
|
|
/*
|
|
In ::external_lock InnoDB resets the fields which tell it that
|
|
the handle is used in the HANDLER interface. Tell it again that
|
|
we are using it for HANDLER.
|
|
*/
|
|
|
|
table->file->init_table_handle_for_HANDLER();
|
|
|
|
for (num_rows=0; num_rows < select_limit_cnt; )
|
|
{
|
|
switch (mode) {
|
|
case RNEXT:
|
|
if (table->file->inited != handler::NONE)
|
|
{
|
|
error=keyname ?
|
|
table->file->index_next(table->record[0]) :
|
|
table->file->rnd_next(table->record[0]);
|
|
break;
|
|
}
|
|
/* else fall through */
|
|
case RFIRST:
|
|
if (keyname)
|
|
{
|
|
table->file->ha_index_or_rnd_end();
|
|
table->file->ha_index_init(keyno, 1);
|
|
error= table->file->index_first(table->record[0]);
|
|
}
|
|
else
|
|
{
|
|
table->file->ha_index_or_rnd_end();
|
|
if (!(error= table->file->ha_rnd_init(1)))
|
|
error= table->file->rnd_next(table->record[0]);
|
|
}
|
|
mode=RNEXT;
|
|
break;
|
|
case RPREV:
|
|
DBUG_ASSERT(keyname != 0);
|
|
if (table->file->inited != handler::NONE)
|
|
{
|
|
error=table->file->index_prev(table->record[0]);
|
|
break;
|
|
}
|
|
/* else fall through */
|
|
case RLAST:
|
|
DBUG_ASSERT(keyname != 0);
|
|
table->file->ha_index_or_rnd_end();
|
|
table->file->ha_index_init(keyno, 1);
|
|
error= table->file->index_last(table->record[0]);
|
|
mode=RPREV;
|
|
break;
|
|
case RNEXT_SAME:
|
|
/* Continue scan on "(keypart1,keypart2,...)=(c1, c2, ...) */
|
|
DBUG_ASSERT(keyname != 0);
|
|
error= table->file->index_next_same(table->record[0], key, key_len);
|
|
break;
|
|
case RKEY:
|
|
{
|
|
DBUG_ASSERT(keyname != 0);
|
|
KEY *keyinfo=table->key_info+keyno;
|
|
KEY_PART_INFO *key_part=keyinfo->key_part;
|
|
if (key_expr->elements > keyinfo->key_parts)
|
|
{
|
|
my_error(ER_TOO_MANY_KEY_PARTS, MYF(0), keyinfo->key_parts);
|
|
goto err;
|
|
}
|
|
List_iterator<Item> it_ke(*key_expr);
|
|
Item *item;
|
|
key_part_map keypart_map;
|
|
for (keypart_map= key_len=0 ; (item=it_ke++) ; key_part++)
|
|
{
|
|
my_bitmap_map *old_map;
|
|
// 'item' can be changed by fix_fields() call
|
|
if ((!item->fixed &&
|
|
item->fix_fields(thd, it_ke.ref())) ||
|
|
(item= *it_ke.ref())->check_cols(1))
|
|
goto err;
|
|
if (item->used_tables() & ~RAND_TABLE_BIT)
|
|
{
|
|
my_error(ER_WRONG_ARGUMENTS,MYF(0),"HANDLER ... READ");
|
|
goto err;
|
|
}
|
|
old_map= dbug_tmp_use_all_columns(table, table->write_set);
|
|
(void) item->save_in_field(key_part->field, 1);
|
|
dbug_tmp_restore_column_map(table->write_set, old_map);
|
|
key_len+=key_part->store_length;
|
|
keypart_map= (keypart_map << 1) | 1;
|
|
}
|
|
|
|
if (!(key= (uchar*) thd->calloc(ALIGN_SIZE(key_len))))
|
|
goto err;
|
|
table->file->ha_index_or_rnd_end();
|
|
table->file->ha_index_init(keyno, 1);
|
|
key_copy(key, table->record[0], table->key_info + keyno, key_len);
|
|
error= table->file->index_read_map(table->record[0],
|
|
key, keypart_map, ha_rkey_mode);
|
|
mode=rkey_to_rnext[(int)ha_rkey_mode];
|
|
break;
|
|
}
|
|
default:
|
|
my_message(ER_ILLEGAL_HA, ER(ER_ILLEGAL_HA), MYF(0));
|
|
goto err;
|
|
}
|
|
|
|
if (error)
|
|
{
|
|
if (error == HA_ERR_RECORD_DELETED)
|
|
continue;
|
|
if (error != HA_ERR_KEY_NOT_FOUND && error != HA_ERR_END_OF_FILE)
|
|
{
|
|
sql_print_error("mysql_ha_read: Got error %d when reading table '%s'",
|
|
error, tables->table_name);
|
|
table->file->print_error(error,MYF(0));
|
|
goto err;
|
|
}
|
|
goto ok;
|
|
}
|
|
if (cond && !cond->val_int())
|
|
continue;
|
|
if (num_rows >= offset_limit_cnt)
|
|
{
|
|
protocol->prepare_for_resend();
|
|
|
|
if (protocol->send_result_set_row(&list))
|
|
goto err;
|
|
|
|
protocol->write();
|
|
}
|
|
num_rows++;
|
|
}
|
|
ok:
|
|
mysql_unlock_tables(thd,lock);
|
|
my_eof(thd);
|
|
DBUG_PRINT("exit",("OK"));
|
|
DBUG_RETURN(FALSE);
|
|
|
|
err:
|
|
mysql_unlock_tables(thd,lock);
|
|
err0:
|
|
DBUG_PRINT("exit",("ERROR"));
|
|
DBUG_RETURN(TRUE);
|
|
}
|
|
|
|
|
|
/**
|
|
Scan the handler tables hash for matching tables.
|
|
|
|
@param thd Thread identifier.
|
|
@param tables The list of tables to remove.
|
|
|
|
@return Pointer to head of linked list (TABLE_LIST::next_local) of matching
|
|
TABLE_LIST elements from handler_tables_hash. Otherwise, NULL if no
|
|
table was matched.
|
|
*/
|
|
|
|
static TABLE_LIST *mysql_ha_find(THD *thd, TABLE_LIST *tables)
|
|
{
|
|
TABLE_LIST *hash_tables, *head= NULL, *first= tables;
|
|
DBUG_ENTER("mysql_ha_find");
|
|
|
|
/* search for all handlers with matching table names */
|
|
for (uint i= 0; i < thd->handler_tables_hash.records; i++)
|
|
{
|
|
hash_tables= (TABLE_LIST*) my_hash_element(&thd->handler_tables_hash, i);
|
|
for (tables= first; tables; tables= tables->next_local)
|
|
{
|
|
if ((! *tables->db ||
|
|
! my_strcasecmp(&my_charset_latin1, hash_tables->db, tables->db)) &&
|
|
! my_strcasecmp(&my_charset_latin1, hash_tables->table_name,
|
|
tables->table_name))
|
|
break;
|
|
}
|
|
if (tables)
|
|
{
|
|
hash_tables->next_local= head;
|
|
head= hash_tables;
|
|
}
|
|
}
|
|
|
|
DBUG_RETURN(head);
|
|
}
|
|
|
|
|
|
/**
|
|
Remove matching tables from the HANDLER's hash table.
|
|
|
|
@param thd Thread identifier.
|
|
@param tables The list of tables to remove.
|
|
|
|
@note Broadcasts refresh if it closed a table with old version.
|
|
*/
|
|
|
|
void mysql_ha_rm_tables(THD *thd, TABLE_LIST *tables)
|
|
{
|
|
TABLE_LIST *hash_tables, *next;
|
|
DBUG_ENTER("mysql_ha_rm_tables");
|
|
|
|
DBUG_ASSERT(tables);
|
|
|
|
hash_tables= mysql_ha_find(thd, tables);
|
|
|
|
while (hash_tables)
|
|
{
|
|
next= hash_tables->next_local;
|
|
if (hash_tables->table)
|
|
mysql_ha_close_table(thd, hash_tables);
|
|
my_hash_delete(&thd->handler_tables_hash, (uchar*) hash_tables);
|
|
hash_tables= next;
|
|
}
|
|
|
|
DBUG_VOID_RETURN;
|
|
}
|
|
|
|
|
|
/**
|
|
Flush (close and mark for re-open) all tables that should be should
|
|
be reopen.
|
|
|
|
@param thd Thread identifier.
|
|
|
|
@note Broadcasts refresh if it closed a table with old version.
|
|
*/
|
|
|
|
void mysql_ha_flush(THD *thd)
|
|
{
|
|
TABLE_LIST *hash_tables;
|
|
DBUG_ENTER("mysql_ha_flush");
|
|
|
|
safe_mutex_assert_not_owner(&LOCK_open);
|
|
|
|
for (uint i= 0; i < thd->handler_tables_hash.records; i++)
|
|
{
|
|
hash_tables= (TABLE_LIST*) my_hash_element(&thd->handler_tables_hash, i);
|
|
if (hash_tables->table &&
|
|
(hash_tables->table->mdl_lock &&
|
|
mdl_has_pending_conflicting_lock(hash_tables->table->mdl_lock) ||
|
|
hash_tables->table->needs_reopen_or_name_lock()))
|
|
mysql_ha_close_table(thd, hash_tables);
|
|
}
|
|
|
|
DBUG_VOID_RETURN;
|
|
}
|
|
|
|
|
|
/**
|
|
Close all HANDLER's tables.
|
|
|
|
@param thd Thread identifier.
|
|
|
|
@note Broadcasts refresh if it closed a table with old version.
|
|
*/
|
|
|
|
void mysql_ha_cleanup(THD *thd)
|
|
{
|
|
TABLE_LIST *hash_tables;
|
|
DBUG_ENTER("mysql_ha_cleanup");
|
|
|
|
for (uint i= 0; i < thd->handler_tables_hash.records; i++)
|
|
{
|
|
hash_tables= (TABLE_LIST*) my_hash_element(&thd->handler_tables_hash, i);
|
|
if (hash_tables->table)
|
|
mysql_ha_close_table(thd, hash_tables);
|
|
}
|
|
|
|
my_hash_free(&thd->handler_tables_hash);
|
|
|
|
DBUG_VOID_RETURN;
|
|
}
|
|
|