~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/show_dictionary/show_columns.cc

  • Committer: Monty Taylor
  • Date: 2010-10-25 18:26:50 UTC
  • mto: (1879.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 1880.
  • Revision ID: mordred@inaugust.com-20101025182650-7k11plnoi78sy1gl
Split set_var.* into sys_var.* and set_var.*

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
    is_columns_primed= true;
86
86
  }
87
87
 
88
 
  if (column_iterator >= getTableProto()->field_size())
 
88
  if (column_iterator >= getTableProto().field_size())
89
89
    return false;
90
90
 
91
 
  column= getTableProto()->field(column_iterator);
 
91
  column= getTableProto().field(column_iterator);
92
92
 
93
93
  return true;
94
94
}