diff options
author | unknown <bell@sanja.is.com.ua> | 2004-03-15 11:02:54 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-03-15 11:02:54 +0200 |
commit | e91c5cd018614710385e0f154976eb934876b63d (patch) | |
tree | bac3cb1f328c386c7c752c554129afa456188973 /sql/sql_lex.cc | |
parent | 73fd7b446f76e728780632abec3e6719a14b96f4 (diff) | |
download | mariadb-git-e91c5cd018614710385e0f154976eb934876b63d.tar.gz |
fixed comments
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r-- | sql/sql_lex.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index ce7aa4d02db..757eb4fdc7d 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -1321,8 +1321,8 @@ bool st_select_lex_unit::create_total_list(THD *thd_arg, st_lex *lex, DESCRIPTION This is used for UNION & subselect to create a new table list of all used tables. - The table_list->table entry in all used tables are set to point - to the entries in this list. + The table_list->table_list in all tables of global list are set to point + to the local SELECT_LEX entries. RETURN 0 - OK @@ -1373,7 +1373,7 @@ create_total_list_n_last_return(THD *thd_arg, { TABLE_LIST *cursor; next_table= aux->next; - /* Add not used table to the total table list */ + /* Add to the total table list */ if (!(cursor= (TABLE_LIST *) thd->memdup((char*) aux, sizeof(*aux)))) { |