~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Andrew Hutchings
  • Date: 2011-02-07 17:20:59 UTC
  • mfrom: (2148 staging)
  • mto: (2148.2.3 build)
  • mto: This revision was merged to the branch mainline in revision 2149.
  • Revision ID: andrew@linuxjedi.co.uk-20110207172059-dyeahrgzrlincoe3
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
  }
92
92
 
93
93
  Cursor *cursor; /**< Pointer to the storage engine's Cursor managing this table */
 
94
 
94
95
private:
95
96
  Table *next;
 
97
 
96
98
public:
97
99
  Table *getNext() const
98
100
  {
314
316
    The set is implemented as a bitmap.
315
317
  */
316
318
  key_map keys_in_use_for_query;
 
319
 
317
320
  /* Map of keys that can be used to calculate GROUP BY without sorting */
318
321
  key_map keys_in_use_for_group_by;
 
322
 
319
323
  /* Map of keys that can be used to calculate ORDER BY without sorting */
320
324
  key_map keys_in_use_for_order_by;
321
325