~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:23:04 UTC
  • mfrom: (1089.1.14 merge)
  • Revision ID: brian@gaz-20090711192304-ootijyl5yf9jq9kd
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#ifndef DRIZZLED_TABLE_REFERENCE_H
29
29
#define DRIZZLED_TABLE_REFERENCE_H
30
30
 
 
31
#include <drizzled/global.h>
 
32
#include <drizzled/base.h>
 
33
#include <drizzled/sql_bitmap.h>
 
34
 
31
35
class StoredKey;
 
36
class Item;
32
37
 
33
 
typedef struct st_table_ref
 
38
struct table_reference_st
34
39
{
35
40
  bool key_err;
36
41
  uint32_t key_parts; /**< num of key parts */
65
70
    produce different results (because of Index Condition Pushdown)
66
71
  */
67
72
  bool disable_cache;
68
 
} TABLE_REF;
 
73
};
69
74
 
70
75
#endif /* DRIZZLED_TABLE_REFERENCE_H */