~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_cmpfunc.cc

  • Committer: Brian Aker
  • Date: 2008-08-16 22:34:15 UTC
  • mto: This revision was merged to the branch mainline in revision 346.
  • Revision ID: brian@tangent.org-20080816223415-n24esdpfcqi4pwpy
Refactor around classes. TABLE_LIST has been factored out of table.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
386
386
 
387
387
  if (!(*item)->with_subselect && (*item)->const_item())
388
388
  {
389
 
    TABLE *table= field->table;
 
389
    Table *table= field->table;
390
390
    ulong orig_sql_mode= thd->variables.sql_mode;
391
391
    enum_check_fields orig_count_cuted_fields= thd->count_cuted_fields;
392
392
    my_bitmap_map *old_write_map;
2226
2226
  return cached_field_type;
2227
2227
}
2228
2228
 
2229
 
Field *Item_func_ifnull::tmp_table_field(TABLE *table)
 
2229
Field *Item_func_ifnull::tmp_table_field(Table *table)
2230
2230
{
2231
2231
  return tmp_table_field_from_field_type(table, 0);
2232
2232
}