~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

  • Committer: Monty Taylor
  • Date: 2009-06-08 13:39:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1060.
  • Revision ID: mordred@inaugust.com-20090608133905-3hogrrafmfg6e5hs
Removed CHARSET_INFO stuff from protocol plugin interface - it makes no sense.

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
    push_warning).
128
128
  */
129
129
  protocol->prepareForResend();
130
 
  protocol->store(name, length, system_charset_info);
131
 
  protocol->store(param->op_name, system_charset_info);
132
 
  protocol->store(msg_type, system_charset_info);
133
 
  protocol->store(msgbuf, msg_length, system_charset_info);
 
130
  protocol->store(name, length);
 
131
  protocol->store(param->op_name);
 
132
  protocol->store(msg_type);
 
133
  protocol->store(msgbuf, msg_length);
134
134
  if (protocol->write())
135
135
    errmsg_printf(ERRMSG_LVL_ERROR, "Failed on drizzleclient_net_write, writing to stderr instead: %s\n",
136
136
                    msgbuf);