~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sj_tmp_table.h

  • Committer: Lee
  • Date: 2008-10-03 23:31:06 UTC
  • mfrom: (413.2.3 drizzle)
  • mto: This revision was merged to the branch mainline in revision 459.
  • Revision ID: lbieber@lbieber-desktop-20081003233106-tgvzu0fh25gb3xeg
breaking out enum field classes

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
  {
45
45
  public:
46
46
    struct st_join_table *join_tab;
47
 
    uint32_t rowid_offset;
48
 
    uint16_t null_byte;
49
 
    unsigned char null_bit;
 
47
    uint rowid_offset;
 
48
    ushort null_byte;
 
49
    uchar null_bit;
50
50
  };
51
51
  TAB *tabs;
52
52
  TAB *tabs_end;
53
53
 
54
 
  uint32_t null_bits;
55
 
  uint32_t null_bytes;
56
 
  uint32_t rowid_len;
 
54
  uint null_bits;
 
55
  uint null_bytes;
 
56
  uint rowid_len;
57
57
 
58
58
  Table *tmp_table;
59
59
 
65
65
};
66
66
 
67
67
Table *create_duplicate_weedout_tmp_table(THD *thd, 
68
 
                                          uint32_t uniq_tuple_length_arg,
 
68
                                          uint uniq_tuple_length_arg,
69
69
                                          SJ_TMP_TABLE *sjtbl);
70
70
 
71
71
#endif /* DRIZZLED_SJ_TMP_TABLE_H */