diff options
author | unknown <timour@mysql.com> | 2005-08-18 11:24:59 +0300 |
---|---|---|
committer | unknown <timour@mysql.com> | 2005-08-18 11:24:59 +0300 |
commit | ba021e5f3f742357818fa52af95bb812542c8374 (patch) | |
tree | f4047a99c49b3700dd87820c4c2d715e046d1302 /sql/table.cc | |
parent | d8f09108f26f0cbbf51bebe9cfe01cdc2b8cf7a0 (diff) | |
download | mariadb-git-ba021e5f3f742357818fa52af95bb812542c8374.tar.gz |
WL#2486 - natural and using join according to SQL:2003
- Fixed minor error after Monty's review.
sql/table.cc:
cur_table_ref is used in the first pass of the loop *before* it is set later in the loop.
Diffstat (limited to 'sql/table.cc')
-rw-r--r-- | sql/table.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/table.cc b/sql/table.cc index 516116a56c3..b1dea25b8e0 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -2251,7 +2251,6 @@ TABLE_LIST *st_table_list::last_leaf_for_name_resolution() { TABLE_LIST *cur_table_ref= this; NESTED_JOIN *cur_nested_join; - LINT_INIT(cur_table_ref); if (is_leaf_for_name_resolution()) return this; |