~brianaker/drizzle/error-cleanup

« back to all changes in this revision

Viewing changes to drizzled/table_list.cc

  • Committer: Brian Aker
  • Date: 2011-02-05 10:54:10 UTC
  • mfrom: (2141.3.3 test)
  • Revision ID: brian@tangent.org-20110205105410-j3wih60hfx5aq75j
Merge in VJ

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
TableList *TableList::last_leaf_for_name_resolution()
77
77
{
78
78
  TableList *cur_table_ref= this;
79
 
  nested_join_st *cur_nested_join;
 
79
  NestedJoin *cur_nested_join;
80
80
 
81
81
  if (is_leaf_for_name_resolution())
82
82
    return this;
114
114
TableList *TableList::first_leaf_for_name_resolution()
115
115
{
116
116
  TableList *cur_table_ref= NULL;
117
 
  nested_join_st *cur_nested_join;
 
117
  NestedJoin *cur_nested_join;
118
118
 
119
119
  if (is_leaf_for_name_resolution())
120
120
    return this;