~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_list.h

  • Committer: Brian Aker
  • Date: 2009-05-30 22:30:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1045.
  • Revision ID: brian@gaz-20090530223005-hmylm6iywddfentm
A lot of little cleanups (most based off lcov)

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
    natural_join(NULL),
92
92
    is_natural_join(false),
93
93
    is_join_columns_complete(false),
94
 
    schema_table_reformed(false),
95
94
    straight(false),
96
95
    updating(false), 
97
96
    force_index(false),
189
188
  /* true if join_columns contains all columns of this table reference. */
190
189
  bool is_join_columns_complete;
191
190
 
192
 
  /*
193
 
    True when the view field translation table is used to convert
194
 
    schema table fields for backwards compatibility with SHOW command.
195
 
  */
196
 
  bool schema_table_reformed;
197
 
 
198
191
  bool          straight;               /* optimize with prev table */
199
192
  bool          updating;               /* for replicate-do/ignore table */
200
193
  bool          force_index;            /* prefer index over table scan */
296
289
  inline TableList *top_table()
297
290
    { return this; }
298
291
 
299
 
  /*
300
 
    Cleanup for re-execution in a prepared statement or a stored
301
 
    procedure.
302
 
  */
303
 
  void reinit_before_use(Session *session);
304
292
  Item_subselect *containing_subselect();
305
293
 
306
294
  /*