~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cache.cc

  • Committer: Brian Aker
  • Date: 2010-12-18 02:06:13 UTC
  • Revision ID: brian@tangent.org-20101218020613-8lxhcvsy812bu960
Formatting + remove default from switch/case.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
  switch (item->result_type()) {
35
35
  case INT_RESULT:
36
36
    return new Item_cache_int();
 
37
 
37
38
  case REAL_RESULT:
38
39
    return new Item_cache_real();
 
40
 
39
41
  case DECIMAL_RESULT:
40
42
    return new Item_cache_decimal();
 
43
 
41
44
  case STRING_RESULT:
42
45
    return new Item_cache_str(item);
 
46
 
43
47
  case ROW_RESULT:
44
48
    return new Item_cache_row();
45
 
  default:
46
 
    // should never be in real life
47
 
    assert(0);
48
 
    return 0;
49
49
  }
 
50
 
 
51
  assert(0);
 
52
  abort();
50
53
}
51
54
 
52
55