mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '10.6' into 10.11
This commit is contained in:
15
sql/table.h
15
sql/table.h
@@ -2220,8 +2220,23 @@ struct TABLE_CHAIN
|
||||
void set_end_pos(TABLE_LIST **pos) { end_pos= pos; }
|
||||
};
|
||||
|
||||
class Table_ident;
|
||||
struct TABLE_LIST
|
||||
{
|
||||
TABLE_LIST(THD *thd,
|
||||
LEX_CSTRING db_str,
|
||||
bool fqtn,
|
||||
LEX_CSTRING alias_str,
|
||||
bool has_alias_ptr,
|
||||
Table_ident *table_ident,
|
||||
thr_lock_type lock_t,
|
||||
enum_mdl_type mdl_t,
|
||||
ulong table_opts,
|
||||
bool info_schema,
|
||||
st_select_lex *sel,
|
||||
List<Index_hint> *index_hints_ptr,
|
||||
LEX_STRING *option_ptr);
|
||||
|
||||
TABLE_LIST() = default; /* Remove gcc warning */
|
||||
|
||||
enum prelocking_types
|
||||
|
Reference in New Issue
Block a user