diff options
author | unknown <konstantin@mysql.com> | 2005-06-03 00:02:47 +0400 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2005-06-03 00:02:47 +0400 |
commit | 892032a2c2db6ecbe983578132f34ce8dc596048 (patch) | |
tree | fc14b1c1768a454bb3c2e61001bce454073be9ae /sql/sql_union.cc | |
parent | 198550e39b8741cccca0e936f608ca6b1c8dd70a (diff) | |
download | mariadb-git-892032a2c2db6ecbe983578132f34ce8dc596048.tar.gz |
Give Item_arena::is_stmt_prepare a more descriptive name (it marks
the code that is active for SP as well in 5.0)
sql/item.cc:
Rename of an Item_arena method.
sql/item_subselect.cc:
Rename of an Item_arena method.
sql/sql_class.h:
Rename of an Item_arena method.
sql/sql_parse.cc:
Rename of an Item_arena method.
sql/sql_union.cc:
Rename of an Item_arena method.
Diffstat (limited to 'sql/sql_union.cc')
-rw-r--r-- | sql/sql_union.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_union.cc b/sql/sql_union.cc index 8d36889df76..56401ced67c 100644 --- a/sql/sql_union.cc +++ b/sql/sql_union.cc @@ -323,7 +323,7 @@ bool st_select_lex_unit::prepare(THD *thd_arg, select_result *sel_result, } if (tmp_arena) thd->restore_backup_item_arena(tmp_arena, &backup); - if (arena->is_stmt_prepare()) + if (arena->is_stmt_prepare_or_first_sp_execute()) { /* prepare fake select to initialize it correctly */ init_prepare_fake_select_lex(thd); |