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/item_subselect.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/item_subselect.cc')
-rw-r--r-- | sql/item_subselect.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_subselect.cc b/sql/item_subselect.cc index b7aefdd6f2e..4f1e5b9a290 100644 --- a/sql/item_subselect.cc +++ b/sql/item_subselect.cc @@ -362,7 +362,7 @@ Item_singlerow_subselect::select_transformer(JOIN *join) because we do not rollback this changes TODO: make rollback for it, or special name resolving mode in 5.0. */ - !arena->is_stmt_prepare() + !arena->is_stmt_prepare_or_first_sp_execute() ) { |