MySQL 9.1.0
Source Code Documentation
|
#include <assert.h>
#include <stdarg.h>
#include <string.h>
#include <sys/types.h>
#include <algorithm>
#include <atomic>
#include <map>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "mutex_lock.h"
#include "my_alloc.h"
#include "my_base.h"
#include "my_compiler.h"
#include "my_inttypes.h"
#include "my_macros.h"
#include "my_sys.h"
#include "mysql/components/service_implementation.h"
#include "mysql/components/services/bits/mysql_mutex_bits.h"
#include "mysql/components/services/bits/psi_bits.h"
#include "mysql/components/services/bits/psi_mutex_bits.h"
#include "mysql/components/services/log_builtins.h"
#include "mysql/components/services/log_shared.h"
#include "mysql/my_loglevel.h"
#include "mysql/psi/mysql_mutex.h"
#include "mysql/strings/m_ctype.h"
#include "mysqld_error.h"
#include "persistent_dynamic_loader_imp.h"
#include "scope_guard.h"
#include "sql/auth/auth_acls.h"
#include "sql/auth/auth_common.h"
#include "sql/debug_sync.h"
#include "sql/derror.h"
#include "sql/field.h"
#include "sql/handler.h"
#include "sql/iterators/row_iterator.h"
#include "sql/key.h"
#include "sql/mysqld.h"
#include "sql/sql_base.h"
#include "sql/sql_const.h"
#include "sql/sql_error.h"
#include "sql/sql_executor.h"
#include "sql/table.h"
#include "sql/thd_raii.h"
#include "sql/transaction.h"
#include "sql_string.h"
#include "string_with_len.h"
#include "thr_lock.h"
#include "thr_mutex.h"
Classes | |
class | Component_db_intact |
Typedefs | |
typedef std::string | my_string |
Enumerations | |
enum | enum_component_table_field { CT_FIELD_COMPONENT_ID = 0 , CT_FIELD_GROUP_ID , CT_FIELD_COMPONENT_URN , CT_FIELD_COUNT } |
Functions | |
static bool | open_component_table (THD *thd, enum thr_lock_type lock_type, TABLE **table, ulong acl_to_check) |
Open mysql.component table for read or write. More... | |
bool | persistent_dynamic_loader_init (void *thd) |
Initializes persistence store, loads all groups of components registered in component table. More... | |
void | persistent_dynamic_loader_deinit () |
Variables | |
const mysql_service_dynamic_loader_t * | dynamic_loader_srv |
static const TABLE_FIELD_TYPE | component_table_fields [CT_FIELD_COUNT] |
static const TABLE_FIELD_DEF | component_table_def |
static Component_db_intact | table_intact |
In case of an error, a message is printed to the error log. More... | |
typedef std::string my_string |
|
static |
Open mysql.component table for read or write.
Note that if the table can't be locked successfully this operation will close it. Therefore it provides guarantee that it either opens and locks table or fails without leaving any tables open.
thd | Thread context | |
lock_type | How to lock the table | |
[out] | table | Pointer to table structure to store the open table into. |
acl_to_check | acl type to check |
true | open and lock failed - an error message is pushed into the stack. |
false | success |
void persistent_dynamic_loader_deinit | ( | ) |
bool persistent_dynamic_loader_init | ( | void * | thd | ) |
Initializes persistence store, loads all groups of components registered in component table.
thd | Current thread execution context |
false | success |
true | failure |
|
static |
|
static |
const mysql_service_dynamic_loader_t* dynamic_loader_srv |
|
static |
In case of an error, a message is printed to the error log.