~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/data_dictionary.cc

  • Committer: Monty Taylor
  • Date: 2010-12-26 03:15:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226031544-1cf3raipu53fnmyj
Through page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
757
757
 
758
758
  if (trx_i_s_cache_is_truncated(trx_i_s_cache))
759
759
  {
760
 
    errmsg_printf(error::ERROR, _("Warning: data in %s truncated due to memory limit of %d bytes\n"), 
 
760
    errmsg_printf(ERRMSG_LVL_ERROR, _("Warning: data in %s truncated due to memory limit of %d bytes\n"), 
761
761
                  table_name, TRX_I_S_MEM_LIMIT);
762
762
  } 
763
763
 
845
845
   bufend = innobase_convert_name(buf, sizeof(buf),
846
846
                                  row->lock_table,
847
847
                                  strlen(row->lock_table),
848
 
                                  &getSession(), TRUE);
 
848
                                  current_session, TRUE);
849
849
   push(bufend);
850
850
 
851
851
   if (row->lock_index != NULL)
853
853
     bufend = innobase_convert_name(buf, sizeof(buf),
854
854
                                    row->lock_index,
855
855
                                    strlen(row->lock_index),
856
 
                                    &getSession(), FALSE);
 
856
                                    current_session, FALSE);
857
857
     push(bufend);     
858
858
   }
859
859
   else