MySQL 8.4.0
Source Code Documentation
sql_reload.h
Go to the documentation of this file.
1#ifndef SQL_RELOAD_INCLUDED
2#define SQL_RELOAD_INCLUDED
3/* Copyright (c) 2010, 2024, Oracle and/or its affiliates.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License, version 2.0,
7 as published by the Free Software Foundation.
8
9 This program is designed to work with certain software (including
10 but not limited to OpenSSL) that is licensed under separate terms,
11 as designated in a particular file or component or in included license
12 documentation. The authors of MySQL hereby grant you an additional
13 permission to link the program and your derivative works with the
14 separately licensed software that they have either included with
15 the program or referenced in the documentation.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License, version 2.0, for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
25
26class THD;
27class Table_ref;
28
29bool handle_reload_request(THD *thd, unsigned long options, Table_ref *tables,
30 int *write_to_binlog);
31
32bool is_reload_request_denied(THD *thd, unsigned long op_type);
33
34bool flush_tables_with_read_lock(THD *thd, Table_ref *all_tables);
35
36bool flush_tables_for_export(THD *thd, Table_ref *all_tables);
37
38#endif
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
Definition: table.h:2863
Definition: options.cc:57
bool flush_tables_with_read_lock(THD *thd, Table_ref *all_tables)
Implementation of FLUSH TABLES <table_list> WITH READ LOCK.
Definition: sql_reload.cc:454
bool is_reload_request_denied(THD *thd, unsigned long op_type)
Check the privileges required to execute a FLUSH command.
Definition: sql_reload.cc:73
bool handle_reload_request(THD *thd, unsigned long options, Table_ref *tables, int *write_to_binlog)
Reload/resets privileges and the different caches.
Definition: sql_reload.cc:145
bool flush_tables_for_export(THD *thd, Table_ref *all_tables)
Prepare tables for export (transportable tablespaces) by a) waiting until write transactions/DDL oper...
Definition: sql_reload.cc:537