~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Brian Aker
  • Date: 2008-12-05 05:11:29 UTC
  • Revision ID: brian@tangent.org-20081205051129-0rfo2clyqs3owobl
Removing the SP bits.

Show diffs side-by-side

added added

removed removed

Lines of Context:
306
306
 
307
307
 
308
308
Item::Item():
309
 
  is_expensive_cache(-1), rsize(0), name(0), orig_name(0), name_length(0),
 
309
  is_expensive_cache(-1), name(0), orig_name(0), name_length(0),
310
310
  fixed(0), is_autogenerated_name(true),
311
311
  collation(&my_charset_bin, DERIVATION_COERCIBLE)
312
312
{
348
348
*/
349
349
Item::Item(Session *session, Item *item):
350
350
  is_expensive_cache(-1),
351
 
  rsize(0),
352
351
  str_value(item->str_value),
353
352
  name(item->name),
354
353
  orig_name(item->orig_name),
1091
1090
}
1092
1091
 
1093
1092
 
1094
 
Item *Item::this_item(void)
1095
 
{
1096
 
  return this;
1097
 
}
1098
 
 
1099
 
 
1100
 
const Item *Item::this_item(void) const
1101
 
{
1102
 
  return this;
1103
 
}
1104
 
 
1105
 
 
1106
 
Item **Item::this_item_addr(Session *, Item **addr_arg)
1107
 
{
1108
 
  return addr_arg;
1109
 
}
1110
 
 
1111
 
 
1112
1093
uint32_t Item::cols()
1113
1094
{
1114
1095
  return 1;