~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_reference.h

  • Committer: Brian Aker
  • Date: 2009-07-11 19:15:43 UTC
  • mto: This revision was merged to the branch mainline in revision 1093.
  • Revision ID: brian@gaz-20090711191543-7tpgoaqnrlw23n36
Fix TABLE_REF structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
class StoredKey;
36
36
class Item;
37
37
 
38
 
typedef struct st_table_ref
 
38
struct table_reference_st
39
39
{
40
40
  bool key_err;
41
41
  uint32_t key_parts; /**< num of key parts */
70
70
    produce different results (because of Index Condition Pushdown)
71
71
  */
72
72
  bool disable_cache;
73
 
} TABLE_REF;
 
73
};
74
74
 
75
75
#endif /* DRIZZLED_TABLE_REFERENCE_H */