summaryrefslogtreecommitdiff
path: root/sql/opt_subselect.cc
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2014-08-15 17:35:07 +0200
committerSergei Golubchik <serg@mariadb.org>2014-10-10 22:27:37 +0200
commit43d1f0b6b918df8d0aa31800caec4bceb1c3426d (patch)
treeabcdad3f085a0be420600b32b236a2eb42dc0a19 /sql/opt_subselect.cc
parentaabb33cc54e6031f7c9f5b2a06566387550fa194 (diff)
downloadmariadb-git-43d1f0b6b918df8d0aa31800caec4bceb1c3426d.tar.gz
cleanup: rename List<> methods
prepand() -> prepend() concat() -> append()
Diffstat (limited to 'sql/opt_subselect.cc')
-rw-r--r--sql/opt_subselect.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/opt_subselect.cc b/sql/opt_subselect.cc
index 6e65b5ea177..4902ae8b028 100644
--- a/sql/opt_subselect.cc
+++ b/sql/opt_subselect.cc
@@ -1515,7 +1515,7 @@ static bool convert_subq_to_sj(JOIN *parent_join, Item_in_subselect *subq_pred)
NOTE: We actually insert them at the front! That's because the order is
reversed in this list.
*/
- parent_lex->leaf_tables.concat(&subq_lex->leaf_tables);
+ parent_lex->leaf_tables.append(&subq_lex->leaf_tables);
if (subq_lex->options & OPTION_SCHEMA_TABLE)
parent_lex->options |= OPTION_SCHEMA_TABLE;