mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge
sql/field.cc: Auto merged sql/mysql_priv.h: Auto merged sql/mysqld.cc: Auto merged sql/sql_base.cc: Auto merged sql/sql_class.cc: Auto merged sql/sql_class.h: Auto merged sql/sql_lex.h: Auto merged sql/sql_parse.cc: Auto merged sql/handler.cc: SCCS merged
This commit is contained in:
@ -695,6 +695,7 @@ typedef struct st_lex
|
||||
Item *default_value, *on_update_value;
|
||||
LEX_STRING comment, ident;
|
||||
LEX_USER *grant_user;
|
||||
XID *xid;
|
||||
gptr yacc_yyss,yacc_yyvs;
|
||||
THD *thd;
|
||||
CHARSET_INFO *charset;
|
||||
@ -738,7 +739,7 @@ typedef struct st_lex
|
||||
enum enum_tx_isolation tx_isolation;
|
||||
enum enum_ha_read_modes ha_read_mode;
|
||||
union {
|
||||
enum ha_rkey_function ha_rkey_mode;
|
||||
enum ha_rkey_function ha_rkey_mode;
|
||||
enum xa_option_words xa_opt;
|
||||
};
|
||||
enum enum_var_type option_type;
|
||||
@ -764,15 +765,15 @@ typedef struct st_lex
|
||||
ALTER_INFO alter_info;
|
||||
/* Prepared statements SQL syntax:*/
|
||||
LEX_STRING prepared_stmt_name; /* Statement name (in all queries) */
|
||||
/*
|
||||
/*
|
||||
Prepared statement query text or name of variable that holds the
|
||||
prepared statement (in PREPARE ... queries)
|
||||
*/
|
||||
LEX_STRING prepared_stmt_code;
|
||||
LEX_STRING prepared_stmt_code;
|
||||
/* If true, prepared_stmt_code is a name of variable that holds the query */
|
||||
bool prepared_stmt_code_is_varref;
|
||||
/* Names of user variables holding parameters (in EXECUTE) */
|
||||
List<LEX_STRING> prepared_stmt_params;
|
||||
List<LEX_STRING> prepared_stmt_params;
|
||||
/*
|
||||
Points to part of global table list which contains time zone tables
|
||||
implicitly used by the statement.
|
||||
|
Reference in New Issue
Block a user