diff options
author | kostja@bodhi.local <> | 2006-12-12 01:50:12 +0300 |
---|---|---|
committer | kostja@bodhi.local <> | 2006-12-12 01:50:12 +0300 |
commit | 92f1c7623635adeeab08a58d83179e6b62a0b240 (patch) | |
tree | 13f5570546702b83046f58c43a391f93191f3d5a /sql/sql_lex.cc | |
parent | 758404b238d6c3f25958c4716abac778e76d5722 (diff) | |
download | mariadb-git-92f1c7623635adeeab08a58d83179e6b62a0b240.tar.gz |
Post-merge fixes for Bug#4968 "Stored procedure crash if cursor opened
on altered table" and Bug#19733 "Repeated alter, or repeated
create/drop, fails"
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r-- | sql/sql_lex.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index e063db58488..46fa205a25c 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -1062,8 +1062,7 @@ Alter_info::Alter_info(const Alter_info &rhs, MEM_ROOT *mem_root) create_list(rhs.create_list, mem_root), flags(rhs.flags), keys_onoff(rhs.keys_onoff), - tablespace_op(rhs.tablespace_op), - is_simple(rhs.is_simple) + tablespace_op(rhs.tablespace_op) {} |