~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/ident.cc

  • Committer: Eric Day
  • Date: 2009-10-31 21:53:33 UTC
  • mfrom: (1200 staging)
  • mto: This revision was merged to the branch mainline in revision 1202.
  • Revision ID: eday@oddments.org-20091031215333-j94bjoanwmi68p6f
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
 
63
63
void Item_ident::cleanup()
64
64
{
65
 
#ifdef CANT_BE_USED_AS_MEMORY_IS_FREED
66
 
                       db_name ? db_name : "(null)",
67
 
                       orig_db_name ? orig_db_name : "(null)",
68
 
                       table_name ? table_name : "(null)",
69
 
                       orig_table_name ? orig_table_name : "(null)",
70
 
                       field_name ? field_name : "(null)",
71
 
                       orig_field_name ? orig_field_name : "(null)"));
72
 
#endif
73
65
  Item::cleanup();
74
66
  db_name= orig_db_name;
75
67
  table_name= orig_table_name;