diff options
author | unknown <serg@serg.mylan> | 2005-04-05 13:23:11 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-04-05 13:23:11 +0200 |
commit | 46aad9633e9ca7637c5e1733a8ed13b0e251d24a (patch) | |
tree | 0a56278a2020f2d1a62f4609954f3e92e90ae0dc /sql/sql_lex.h | |
parent | b419262fe49bb3cc84f496e913edd3f1baf25283 (diff) | |
parent | cd0a50bf34477bf547cc4a66f0d5d9651574a65b (diff) | |
download | mariadb-git-46aad9633e9ca7637c5e1733a8ed13b0e251d24a.tar.gz |
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
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 32a62173059..d8c83434423 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -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. |