~jaypipes/drizzle/bug534806

« back to all changes in this revision

Viewing changes to drizzled/table_list.h

  • Committer: Brian Aker
  • Date: 2010-02-27 01:53:04 UTC
  • mfrom: (1309.1.17 fix_is)
  • Revision ID: brian@gaz-20100227015304-xxruqg8c4snj32u3
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
namespace plugin
40
40
{
41
 
  class InfoSchemaTable;
42
41
  class StorageEngine;
43
42
}
44
43
 
93
92
    is_natural_join(false),
94
93
    is_join_columns_complete(false),
95
94
    straight(false),
96
 
    updating(false), 
97
95
    force_index(false),
98
96
    ignore_leaves(false),
99
97
    create(false),
169
167
  bool is_join_columns_complete;
170
168
 
171
169
  bool straight; ///< optimize with prev table
172
 
  bool updating; ///< for replicate-do/ignore table
173
170
  bool force_index; ///< prefer index over table scan
174
171
  bool ignore_leaves; ///< preload only non-leaf nodes
175
172