~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_list.h

  • Committer: Stewart Smith
  • Date: 2008-09-25 10:04:06 UTC
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: stewart@flamingspork.com-20080925100406-hld92f4dr4nuar3a
Move compression functions (compress, uncompress and compressed_length) out into modules and fix test

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
  */
123
123
  table_map     sj_inner_tables;
124
124
  /* Number of IN-compared expressions */
125
 
  uint32_t          sj_in_exprs; 
 
125
  uint          sj_in_exprs; 
126
126
  /*
127
127
    The structure of ON expression presented in the member above
128
128
    can be changed during certain optimizations. This member
167
167
  /* Index names in a "... JOIN ... USE/IGNORE INDEX ..." clause. */
168
168
  List<Index_hint> *index_hints;
169
169
  Table        *table;    /* opened table */
170
 
  uint32_t          table_id; /* table id (from binlog) for opened table */
 
170
  uint          table_id; /* table id (from binlog) for opened table */
171
171
  /*
172
172
    select_result for derived table to pass it from table creation to table
173
173
    filling procedure
241
241
  */
242
242
  bool          is_fqtn;
243
243
 
244
 
  uint32_t i_s_requested_object;
 
244
  uint i_s_requested_object;
245
245
  bool has_db_lookup_value;
246
246
  bool has_table_lookup_value;
247
 
  uint32_t table_open_method;
 
247
  uint table_open_method;
248
248
  enum enum_schema_table_state schema_table_state;
249
249
  void set_underlying_merge();
250
250
  bool setup_underlying(THD *thd);