diff options
author | Alexander Barkov <bar@mariadb.org> | 2016-10-08 11:50:18 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2016-10-08 11:50:18 +0400 |
commit | 4c45b820aa0e04fd25527279175fdc7fabcd731e (patch) | |
tree | e52297dbbe7798cc21aabc4e747467bad78e1e79 /sql/sql_lex.h | |
parent | 8ea2e143f09bd0602ffd9695a78c076d483dd65a (diff) | |
download | mariadb-git-4c45b820aa0e04fd25527279175fdc7fabcd731e.tar.gz |
MDEV-10709 Expressions as parameters to Dynamic SQL
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 5310e2a018f..cb081faa75b 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -2728,7 +2728,7 @@ public: /* 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<Item> prepared_stmt_params; sp_head *sphead; sp_name *spname; bool sp_lex_in_use; /* Keep track on lex usage in SPs for error handling */ |