diff options
author | kostja@bodhi.(none) <> | 2007-07-06 16:18:49 +0400 |
---|---|---|
committer | kostja@bodhi.(none) <> | 2007-07-06 16:18:49 +0400 |
commit | a33bc2c24731fcbe2f94f1970c2e7fd7c1f8a524 (patch) | |
tree | 9cc0999517a1891e5d96871fc9aedcf571930468 /sql/sql_select.cc | |
parent | 674d10270c92c15cb204ec5cc87f2f5d06195184 (diff) | |
download | mariadb-git-a33bc2c24731fcbe2f94f1970c2e7fd7c1f8a524.tar.gz |
Remove typedef st_table_list TABLE_LIST and always use name 'TABLE_LIST'.
The need arose when working on Bug 26141, where it became
necessary to replace TABLE_LIST with its forward declaration in a few
headers, and this involved a lot of s/TABLE_LIST/st_table_list/.
Although other workarounds exist, this patch is in line
with our general strategy of moving away from typedef-ed names.
Sometime in future we might also rename TABLE_LIST to follow the
coding style, but this is a huge change.
Diffstat (limited to 'sql/sql_select.cc')
-rw-r--r-- | sql/sql_select.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_select.cc b/sql/sql_select.cc index 9d27ab4bb4e..6e0640d2cd4 100644 --- a/sql/sql_select.cc +++ b/sql/sql_select.cc @@ -15395,11 +15395,11 @@ static void print_join(THD *thd, String *str, List<TABLE_LIST> *tables) Print table as it should be in join list SYNOPSIS - st_table_list::print(); + TABLE_LIST::print(); str string where table should bbe printed */ -void st_table_list::print(THD *thd, String *str) +void TABLE_LIST::print(THD *thd, String *str) { if (nested_join) { |