~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/net_serv.cc

  • Committer: Padraig O'Sullivan
  • Date: 2010-02-11 16:22:34 UTC
  • mto: (1300.3.1 query-as-string)
  • mto: This revision was merged to the branch mainline in revision 1307.
  • Revision ID: osullivan.padraig@gmail.com-20100211162234-tkk64v4vdqkb9syv
Removed the found_semicolon member from the parsing stage

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
{
64
64
  net->vio = vio;
65
65
  net->max_packet= (uint32_t) buffer_length;
66
 
  net->max_packet_size= max(buffer_length, global_system_variables.max_allowed_packet);
 
66
  net->max_packet_size= max(buffer_length, drizzled::global_system_variables.max_allowed_packet);
67
67
 
68
68
  if (!(net->buff=(unsigned char*) malloc((size_t) net->max_packet+
69
69
                                          NET_HEADER_SIZE + COMP_HEADER_SIZE)))